Help for this page

Select Code to Download


  1. or download this
    if  test $? -eq 0
    then
    else
    fi
    
  2. or download this
    if [  $? -eq 0 ]
    then
    else
    fi
    
  3. or download this
    cd go_to_dir_where_perl_program_exists  &&
    if   /usr/bin/perl perlscript.pl
    ...
      echo "failure"
      # do some more stuff
    fi