Trying to run an IF statement on two machines-
1.SunOS 5.8 Generic_Virtual sun4u sparc SUNW,Sun-Fire-V240 (bash)
2.SunOS 5.10 Generic_127112-11 i86pc i386 i86pc (tcsh)
The command which I run from shell -
if ( echo 13 | grep -w
date +%e>/dev/null ) ; then echo "present" ; fi
It runs fine on machine 1. But get following error on machine 2 (tcsh)-
if: Expression Syntax.
How can I correct this in tcsh ? I need to run this from a crontab file-
30 09 * * * if ( echo 13 | grep -w
date +%e>/dev/null ) ; then echo "present" ; fi
if [condition]; then doSomething; fi– NNzz Nov 13 '12 at 16:08/bin/testand a link to it called/bin/[, the[operator has been built into shells since UNIX™ System V, and probably even UNIX™ System III (a long time). The status from a sub-shell is the status of the last command that executes in the sub-shell; in the example, that's thegrep. – Jonathan Leffler Nov 14 '12 at 6:52ifin real shells is different from the syntax in sea-shells, and ne'er the twain shall meet. Use real shells; don't use sea-shells (leave 'em on the C shore). – Jonathan Leffler Nov 14 '12 at 6:53