Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^3: Perl influences?

by eyepopslikeamosquito (Archbishop)
on May 05, 2005 at 21:51 UTC ( [id://454519]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Perl influences?
in thread Perl influences?

More stuff derived from sh:

  • # as comment character.
  • Here-docs (perl's being much more powerful).
  • Capturing command stdout with backticks, i.e. `$cmd`.
  • "$var" interpolates $var, while '$var' does not.
  • Built-in vars: $? status of last command; $$ pid; $0 program name.
  • Having separate "string" versus "numeric" operators, albeit with different names; for example, shell uses = for string equality, -eq for numeric, while perl is more logical (string variants alphabetic), == for numeric, eq for string.
  • && and || operators (ok, C has these too).
  • the tr function seems inspired by Unix tr command, with y synonym to appease sed fanatics (modern day golfers being grateful for said sed fanatics early influence:-).
  • Many other perl internal functions seem inspired from sh or Unix commands, for example: shift, chown, chmod, mkdir, eval, exit, kill, sleep, umask.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-25 15:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found