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`;
link|improve this question
My bet is that $words has a ending newline "26\n". – Dan D. Feb 24 at 12:15
To prevent wc printing the filename, make it read from stdin: words=$(wc -l < /home/tmp/logged.log) – glenn jackman Feb 24 at 14:48
feedback

3 Answers

up vote 1 down vote accepted

try to use [ $words -eq 26 ] instead of [ $words == 26 ]

or [ 26 == 26 ] to check that statement works properly

link|improve this answer
Thanks for the help, I found the problem on my own after trying 26 == 26. The problem was this lastlog | grep Never | wc -l > /tmp/logged.log. The logfile contained 1 row with value 26. – user1204032 Feb 24 at 13:27
glad! however you can use some of C-type operators in bash by using such expr [[ 26 == 26 ]] – triclosan Feb 24 at 13:30
feedback

Because == is not valid. Use =

if [ $words = 26 ]

By the way you can use cut instead of awk.

wc -l /home/tmp/logged.log  | cut -f1 -d" "
link|improve this answer
His second example, wc -l < file, would be the proper way. – jordanm Feb 24 at 13:16
Thanks for the help, I found the problem on my own after trying 26 == 26. The problem was this lastlog | grep Never | wc -l > /tmp/logged.log. The logfile contained 1 row with value 26. – user1204032 Feb 24 at 13:27
feedback

Try this:

words=`wc -l /home/tmp/logged.log | awk '{print $1}'`;
if test $words -eq 26; then
    echo $words
    echo Good
else
    echo Not so good
fi
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.