//View Tip #91
» Randomize lines in a file
» Disable bash history
» Command line currency conversion
» Alter autocompletion settings
Similar Tips
» Find files greater than a certain size» Randomize lines in a file
» Disable bash history
» Command line currency conversion
» Alter autocompletion settings
Latest tips by RSS
Click here to subscribe
Follow Shell-Fu on Twitter
Click here to follow
Follow Shell-Fu on identi.ca
Click here to follow
For a fix of #67 that is a bit nicer
for support spaces in the arguments just fine, just make sure you quote "$i".
$ touch a
$ touch b\ c
$ for i in *; do ls "$i"; done;
for support spaces in the arguments just fine, just make sure you quote "$i".
$ touch a
$ touch b\ c
$ for i in *; do ls "$i"; done;
Comments
Add your comment
No Comments

