Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Win32 File Creation Weirdness, ActivePerl 5.8.8

by imrags (Monk)
on Jul 07, 2009 at 09:11 UTC ( [id://777817]=note: print w/replies, xml ) Need Help??


in reply to Win32 File Creation Weirdness, ActivePerl 5.8.8

The > operator is redirecting the output to file "id".
Converting => operator to a letter/word like "and" prints the output without printing the ID
I'm getting the result without any ID... This will give u a result sans id
perl -e "for (glob '*') { ($id) = /\d+$/ || /^\d+/; print \"$_\n\"; }"
You can also try this
UPDATED CODE(thanks to cdarke):
perl -e "while (<*>){print $_.\"\n\";}"
Same result
Raghu

Replies are listed 'Best First'.
Re^2: Win32 File Creation Weirdness, ActivePerl 5.8.8
by cdarke (Prior) on Jul 07, 2009 at 09:17 UTC
    Except that <*.*> expects the filename to include a dot. It won't pickup directory names (which generally do not contain a dot) or filenames like README.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (1)
As of 2024-04-25 01:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found