Showing posts with label For Loop. Show all posts
Showing posts with label For Loop. Show all posts

Wednesday, June 1, 2011

Unix "FOR loop"

My most use script to help me sort thing out in unix.

#!/bin/sh

for i in `cat me`
do
echo $i
done