The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




Thread: Order sorting
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 12-04-2005
grahamb grahamb is offline
Registered User
  
 

Join Date: Dec 2005
Location: Windsor, Ont Canada
Posts: 13
Quote:
Originally Posted by Raom
Try this
echo "01 B D A C" | fold -2 |sort -b|xargs echo
Hi
To get rid of the spaces then add:

Code:
.....  | sed 's/ //g'
echo "01 B D A C" | fold -2 |sort -b|xargs echo | sed 's/ //g'

Regards
GrahamB