diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2009-05-05 03:57:55 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2009-05-05 03:57:55 +0200 |
commit | 4ffdf94401376c2b3414d79b4f5a8f373b767800 (patch) | |
tree | 21cfcc9181b2ac69ca43a4069961cd269477f2bf | |
parent | c10582baf37516d297f19b65fb5888a76c36cfea (diff) | |
download | backup-4ffdf94401376c2b3414d79b4f5a8f373b767800.tar.gz backup-4ffdf94401376c2b3414d79b4f5a8f373b767800.tar.xz backup-4ffdf94401376c2b3414d79b4f5a8f373b767800.zip |
bugfix: handle whitespaces in statuslog
-rwxr-xr-x | mysql/mysql_backup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql/mysql_backup.sh b/mysql/mysql_backup.sh index 1e25518..efa4d7c 100755 --- a/mysql/mysql_backup.sh +++ b/mysql/mysql_backup.sh @@ -36,7 +36,7 @@ log() { if [ -n "$1" ]; then echo "$@" else - while read line + while line line do echo $line done |