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

No comments:

Post a Comment