Linux Posts, Programming Posts, Atmega Posts and others.
[Dont use]for f in `cat file`; do..done[use]while read f; do...done file[dont use]grep | wc -l[use]grep -c [Dont use]for f in `echo * or ls *`; docommand "$f"done
[use]for f in * ; docommand "$f"done
No comments:
Post a Comment