Help for this page

Select Code to Download


  1. or download this
    my $diff1 = system("sh diff.sh");
    my $diff2 = system("sh diff1.sh");
    
  2. or download this
    a=diff aaa ccc
    
  3. or download this
    b=diff aaa bbb
    
  4. or download this
    diff aaa bbb
    a=$?
    # do something else with $a
    exit $a
    
  5. or download this
    diff aaa bbb
    
  6. or download this
      my $diff1 = system("diff aaa ccc >/dev/null 2>&1");
      my $diff2 = system("diff aaa bbb >/dev/null 2>&1");