diff options
author | Jing-Tang Keith Jang <keith@FreeBSD.org> | 2000-11-12 05:20:49 +0000 |
---|---|---|
committer | Jing-Tang Keith Jang <keith@FreeBSD.org> | 2000-11-12 05:20:49 +0000 |
commit | bcb019a5f44caf65a96ae09ead58ad9911a6811b (patch) | |
tree | 9b3cb5fd5141fc32cac61d3768870cf21b3989be | |
parent | Enable some feture by default. (diff) |
Prettier output. :-)
Approved by: vanilla
Notes
Notes:
svn path=/head/; revision=35036
-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 |