diff options
author | LAN-TW <lantw44@gmail.com> | 2012-02-05 13:22:41 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2012-02-05 13:22:41 +0800 |
commit | aa6b1f3b89daa67e5d842e7e030f11b82c0124d6 (patch) | |
tree | 5cff6768508d586e95ee87f6d466031c9ff72a00 | |
parent | 39348ff32f90718fa73d9008a774d091acd8bbca (diff) | |
download | configfile-aa6b1f3b89daa67e5d842e7e030f11b82c0124d6.tar configfile-aa6b1f3b89daa67e5d842e7e030f11b82c0124d6.tar.gz configfile-aa6b1f3b89daa67e5d842e7e030f11b82c0124d6.tar.bz2 configfile-aa6b1f3b89daa67e5d842e7e030f11b82c0124d6.tar.lz configfile-aa6b1f3b89daa67e5d842e7e030f11b82c0124d6.tar.xz configfile-aa6b1f3b89daa67e5d842e7e030f11b82c0124d6.tar.zst configfile-aa6b1f3b89daa67e5d842e7e030f11b82c0124d6.zip |
bash_include: 更新顯示訊息bash_include-20120205
-rw-r--r-- | bash_include | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash_include b/bash_include index 6442ade..a15dd15 100644 --- a/bash_include +++ b/bash_include @@ -299,7 +299,7 @@ function check_dmesg () function prehistory_backup () { - echo "Checking current history file" + echo "Checking your current history file" local currentcount=`wc "$HISTFILE" | awk '{print $1}'` [ '!' -f "$historycountfile" ] && touch "$historycountfile" local -i previoushistorycount @@ -316,7 +316,7 @@ function prehistory_backup () echo " 4. Run the command \`prehistory_backup' again." return 3 fi - echo -n "Backing up current history file ($previoushistorycount -> $currentcount, " + echo -n "Backing up your current history file ($previoushistorycount -> $currentcount, " if [ "$previoushistorycount" = "$currentcount" ] then echo "no modification)" |