index = `cat /tmp/myfile.index` $index = $index + 1 echo $index > /tmp/myfile.index exit 0
In Perl you would write that as:
$index = `cat /tmp/myfile.index`; $index = $index + 1; system "echo $index > /tmp/myfile.index"; exit 0;
In reply to Re: the manuals fail me
by jwkrahn
in thread the manuals fail me
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |