in reply to calling perl script from shell script
or alternativelyif test $? -eq 0 then else fi
Use square braces in stead of round ones. finally, it might be easier to use:if [ $? -eq 0 ] then else fi
cd go_to_dir_where_perl_program_exists && if /usr/bin/perl perlscript.pl then echo "success" # do some more stuff else echo "failure" # do some more stuff fi
|
|---|