May 15, 2011

Write on a file and use of Array in bash

#!/bin/ksh
# Array Reference
# Array reference 2
# Write on a file reference
# the util funciton (reverse of cat FILE) tac FILE does not work in OSX. Use tail -r FILE instead
FILES=./*.txt
for f in $FILES
do
echo "Processing $f file..."
# take action on each file. $f store current file name
#store the lines in an array
old_IFS=$IFS
IFS=$'\n'
lines=($(tail -r $f)) # array
IFS=$old_IFS

echo -n > $f # - n option writes without a new line. Here I write nothing on the file. Just overwrite the file with empty string.

for j in {9..0}
do
echo ${lines[$j]} >> $f # >> option appends on the file. > overwrites on the file.
done
done

No comments:

Carlo Cipolla's Laws of Stupidity

    "By creating a graph of Cipolla's two factors, we obtain four groups of people. Helpless people contribute to society but are...