The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Operating Systems > AIX
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 08-19-2007
reborg's Avatar
reborg reborg is offline
Administrator
 

Join Date: Mar 2005
Location: Ireland
Posts: 3,821
Quote:
Originally Posted by robotronic View Post
Code:
ls -1 | awk '{ ORS="|"; print; }'
The -1 option serves no purpose here.

Code:
printf "%s|" *
Reply With Quote