Oscar Rodriguez wrote:
: >     If I use        
: > 
: >     system ls;
: > 
: >     My major problem is the way the data is shot back at the screen
: > since it is not html and there are no <br> 's after each line

Try backticks in a list context:

my @lines = `ls`;
print "$_<br>" for @lines;

or, eliminating the middle man:

print "$_<br>" for `ls`;


-- tdk

Reply via email to