Re: write file to local client using perl
Walter Ian Kaye (walter@natural-innovations.com)
Thu, 27 May 1999 09:53:58 -0700
At 2:04a -0700 05/27/99, johnny widjaya wrote:
>How to write a file to local client using perl script.
>For example, i want my perl script to write to my LOCAL computer everytime I access the script. So the script would keep track how many times I already access the script regardless when i access it.
Sounds like you just want to count invocations of the script?
1. Read existing logfile
2. increment its [numeric] contents
3. Write the incremented number to the file
Simple enough?