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

Re: PIPE less

by ungalnanban (Pilgrim)
on Apr 16, 2010 at 10:15 UTC ( [id://835068]=note: print w/replies, xml ) Need Help??


in reply to PIPE less


using system function we can achieve this.
See the following example code.
use strict; use warnings; use Getopt::Std; . . . my %option=(); getopts("hwmyc:",\%option); . . . if(defined $option{h}) { system("less help_file"); #system("cat help_file | less"); #system("echo "this is help file"|less"); } . . .
--$ugum@r--

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2024-03-19 06:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found