The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 01-10-2008
Perderabo's Avatar
Perderabo Perderabo is offline
Unix Daemon
 

Join Date: Aug 2001
Location: Washington DC Area
Posts: 8,718
I have never used this command before, but there's a first time for everything. Playing around a little I get...
Code:
$ column -c20 < ./T
1       4
2       5
3       6
$ column -c20 -x < ./T
1       2
3       4
5       6
$
Reply With Quote