in reply to Calling a Perl filter script from command line
Try this
dir | perl pager.pl
- it works on Win2k, while this does not work
dir | pager
due to limitations of CMD.EXE which is not a real shell.
Rudif
PS I tested above with a one-line script, ucase.pl:
while (<>) { print uc $_; }