The problem is with this code:
words=`wc -l /home/tmp/logged.log | awk '{print $1}'`;
if [ $words == 26 ]
then
echo $words
echo Good
else
echo Not so good
fi
it always returns the else statement. Even tho the result is 26. I also tried
words=`wc -l < /home/jonathan/tmp/logged.log`;
$wordshas a ending newline"26\n". – Dan D. Feb 24 at 12:15wcprinting the filename, make it read from stdin:words=$(wc -l < /home/tmp/logged.log)– glenn jackman Feb 24 at 14:48