diff options
author | keith <keith@FreeBSD.org> | 2000-11-12 13:20:49 +0800 |
---|---|---|
committer | keith <keith@FreeBSD.org> | 2000-11-12 13:20:49 +0800 |
commit | 0fbd698b85bc458738902fecc6a66498d0329b48 (patch) | |
tree | ba876da9752dc22916bd3105a8adfe3ce03184e0 /chinese | |
parent | f38591aa4ba94dd41424572cd0cf120dacfa928f (diff) | |
download | freebsd-ports-gnome-0fbd698b85bc458738902fecc6a66498d0329b48.tar.gz freebsd-ports-gnome-0fbd698b85bc458738902fecc6a66498d0329b48.tar.zst freebsd-ports-gnome-0fbd698b85bc458738902fecc6a66498d0329b48.zip |
Prettier output. :-)
Approved by: vanilla
Diffstat (limited to 'chinese')
-rw-r--r-- | chinese/big5fs/files/big5fs.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chinese/big5fs/files/big5fs.sh b/chinese/big5fs/files/big5fs.sh index 07caf23afaaa..f1125d0fd3cb 100644 --- a/chinese/big5fs/files/big5fs.sh +++ b/chinese/big5fs/files/big5fs.sh @@ -3,17 +3,17 @@ case "$1" in start) if [ -x @@PREFIX@@/modules/big5cd9660.ko ]; then - echo -n 'Big5 cd9660' + echo -n ' Big5-cd9660' kldload /usr/local/modules/big5cd9660.ko fi if [ -x @@PREFIX@@/modules/big5msdos.ko ]; then - echo -n 'Big5 msdos' + echo -n ' Big5-msdos' kldload /usr/local/modules/big5msdos.ko fi ;; stop) - kldunload -v -n big5cd9660 && echo -n 'Big5 cd9660' - kldunload -v -n big5msdos && echo -n 'Big5 msdos' + kldunload -v -n big5cd9660 && echo -n ' Big5-cd9660' + kldunload -v -n big5msdos && echo -n ' Big5-msdos' ;; *) echo "Usage: big5fs.sh {start|stop}" >&2 |