The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 08-23-2007
jjinno jjinno is offline
Registered User
 

Join Date: Jul 2007
Location: Cloud 9
Posts: 70
I just changed my code to this:
Code:
my @lines = split(/\n/, `/etc/myApp`);
print join("\n", @lines);
Thanks though... I just ran out of time trying to figure the other one out
Reply With Quote