diff options
author | 2012-08-11 02:17:05 +0100 | |
---|---|---|
committer | 2012-08-19 18:13:55 +0300 | |
commit | 527b3e33399dc4075339463f2b1f0478bb61ca6b (patch) | |
tree | a78f3c6ff7465c4aaa9d3394d85225b82afd6260 /scripts | |
parent | Walker: Support string operations on arrays (diff) | |
download | libbash-master.tar.gz libbash-master.tar.bz2 libbash-master.zip |
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/command_execution.bash | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/command_execution.bash b/scripts/command_execution.bash index df6275b..248de63 100644 --- a/scripts/command_execution.bash +++ b/scripts/command_execution.bash @@ -79,6 +79,10 @@ echo "$(echo 'hi')" echo "`echo 'hi'`" array=(`echo 1` `echo 2` 3) echo ${array[@]} +echo `echo 1` +echo `echo 1 \`echo 2\` 3` +echo `echo 1 \`echo 2 \\\`echo 3\\\` 4\` 5` +echo $(echo 1 `echo 2 $(echo 3) 4` 5) ech\ o Hello\ world |