#!/bin/ksh
# If Else reference
FILES=./*.txt
for f in $FILES
do
echo "Processing $f file..."
# take action on each file. $f store current file name
let i=1
tail -r $f | while read line;
do
echo $line
let j=i+1
i=j
if [[ $j != 10 ]]
then echo "value of j $j"
fi
done
done
Subscribe to:
Post Comments (Atom)
-
To install pngwrite we need to install to helper library before we install pngwriter. 1. libpng 2. freetype2 We can use fink or macport to i...
-
Parsing and displaying dates and times is often complicated because of formatting and locale issues. Java 2 Platform, Standard Edition (J2S...
No comments:
Post a Comment