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 -->
  #3 (permalink)  
Old 08-12-2005
reborg's Avatar
reborg reborg is offline
Administrator
 
Join Date: Mar 2005
Location: Ireland
Posts: 3,503
Since you want to make this change ':' cannot be a legal character in the fields and so this will also work.

Code:
echo "::BSNL GUJARAT::India::OUT::NAT::REWEL::POSTPAID::919426199995" | tr -s ':'
Be aware that this change will damage your data if ':' is a legal value, for example in a date.

Last edited by reborg; 08-12-2005 at 12:44 PM.
Reply With Quote