//View Tip #91
» Directories and its size
» Check low space
» Changing file extensions
» CDPATH
Similar Tips
» Close shell keeping all subprocess running » Directories and its size
» Check low space
» Changing file extensions
» CDPATH

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
Comments are currently disabled
No Comments