From bcb019a5f44caf65a96ae09ead58ad9911a6811b Mon Sep 17 00:00:00 2001 From: Jing-Tang Keith Jang Date: Sun, 12 Nov 2000 05:20:49 +0000 Subject: [PATCH] Prettier output. :-) Approved by: vanilla --- chinese/big5fs/files/big5fs.sh | 8 ++++---- 1 file 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