Perl-Shell Embedding problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Pravin
    New Member
    • Jul 2006
    • 1

    Perl-Shell Embedding problem

    HI all can anyone help me,

    i want to use some shell commands in perl script which is not possible can any one instruct me how to execute shell commands in perl script like ls,grep,awk
  • sun99
    New Member
    • Jul 2006
    • 6

    #2
    you can execute as
    system('ls');

    Comment

    Working...