diff options
author | 2012-03-26 16:09:47 +0800 | |
---|---|---|
committer | 2012-03-26 16:35:47 +0800 | |
commit | 7442b34889d4bfc6feca9cdc6d4bc5c881488053 (patch) | |
tree | 7fd87c09d7ef631536bdca20765d79059af2c8cc /scripts/command_execution.bash | |
parent | Builtin: fix argument handling of printf builtin (diff) | |
download | libbash-7442b34889d4bfc6feca9cdc6d4bc5c881488053.tar.gz libbash-7442b34889d4bfc6feca9cdc6d4bc5c881488053.tar.bz2 libbash-7442b34889d4bfc6feca9cdc6d4bc5c881488053.zip |
Walker: fix single quoted argument handling
Diffstat (limited to 'scripts/command_execution.bash')
-rw-r--r-- | scripts/command_execution.bash | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/command_execution.bash b/scripts/command_execution.bash index 0927642..89a0ed7 100644 --- a/scripts/command_execution.bash +++ b/scripts/command_execution.bash @@ -64,6 +64,7 @@ printf "%s %s\n" abc def printf "%s %s\n" $FOO001, def printf "123-%s" 456 789 printf "\n" +printf 'debug-%s ' dvc kbd nla printf "123-%s" ((FOO010=1)) echo $FOO010 |