Hi Mark. Mark Vanmiddlesworth wrote: > I want to feed the output of an "ls" command into a perl script and > store it as a variable, but I can't seem to figure out how to do this. > How can I get this working?
Unless you have a good reason to use 'ls', you may well be better off doing it within Perl. my @files = glob ("/usr/bin/*"); or whatever is appropriate. HTH, Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]