Help for this page

Select Code to Download


  1. or download this
    index = `cat /tmp/myfile.index`
    $index = $index + 1
    echo $index > /tmp/myfile.index
    exit 0
    
  2. or download this
    $index = `cat /tmp/myfile.index`;
    $index = $index + 1;
    system "echo $index > /tmp/myfile.index";
    exit 0;