Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: Sequentially numbering output files rather than overwriting an existing file

by marinersk (Priest)
on Jan 08, 2014 at 18:03 UTC ( [id://1069844]=note: print w/replies, xml ) Need Help??


in reply to Re: Sequentially numbering output files rather than overwriting an existing file
in thread Sequentially numbering output files rather than overwriting an existing file

For more visually pleasing output:
if (-f "$name.txt") { $n=1; my $fn = sprintf "%s-%05d\.txt", $name, $n; $n++ while -f $fn; }
  • Comment on Re^2: Sequentially numbering output files rather than overwriting an existing file
  • Download Code

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1069844]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (8)
As of 2024-04-19 15:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found