Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: List standard Unix error codes (less output, more code)

by tye (Sage)
on Jul 16, 2003 at 18:01 UTC ( [id://274958]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # Win32:
    perl -e "print grep !/unknown error/i, map $_.qq'\t'.($!=$_).$/, 0..12
    +7"
    
    # Other:
    perl -e 'print grep !/unknown error/i, map $_."\t".($!=$_).$/, 0..127'
    
  2. or download this
    # Win32:
    perl -MErrno -e "my %e= map { Errno->$_()=>$_ } keys(%!); print grep !
    +/unknown error/i, map sprintf('%4d %-12s %s'.$/,$_,$e{$_},$!=$_), 0..
    +127"
    
    # Other:
    perl -MErrno -e 'my %e= map { Errno->$_()=>$_ } keys(%!); print grep !
    +/unknown error/i, map sprintf("%4d %-12s %s".$/,$_,$e{$_},$!=$_), 0..
    +127'
    
  3. or download this
       0
       1 EPERM        Operation not permitted
       2 ENOENT       No such file or directory
       3 ESRCH        No such process
       4 EINTR        Interrupted function call
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-16 20:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found