Bug in wc???

Jos Vos jos at xos.nl
Sun Jan 11 16:22:07 UTC 2004


On Sun, Jan 11, 2004 at 05:19:08PM +0100, Jos Vos wrote:

> #!/bin/sh
> Zeilen=`cat /tmp/test.txt |wc -l`
> if [ $Zeilen > 3 ]; then
> echo "Update";
> else
> echo "kein Update";
> fi

OK, another error that I didn't look at, as someone pointed out:

#!/bin/sh
Zeilen=`cat /tmp/test.txt |wc -l`
if [ $Zeilen -gt 3 ]; then
echo "Update";
else
echo "kein Update";
fi

Now I think *this* should work ;-).

-- 
--    Jos Vos <jos at xos.nl>
--    X/OS Experts in Open Systems BV   |   Phone: +31 20 6938364
--    Amsterdam, The Netherlands        |     Fax: +31 20 6948204





More information about the fedora-list mailing list