| Perl Programming | ||
|---|---|---|
| Pipes | ||
# Use another process as input
open INPUT, "ps aux |" or die "Can't open input command: $!";
# Print labels to printer instead of to a file
open LABELS, "| lpr" or die "Can't open lpr command: $!";
|
||
| Previous | http://stuff.mit.edu/iap/perl/ | Next |