The UNIX and Linux Forums
>
Top Forums
>
Shell Programming and Scripting
convert a pipe delimited file to a':" delimited file
.
User Name
Remember Me?
Password
google unix.com
Forums
Register
Forum Rules
Links
Albums
FAQ
Members List
Calendar
Search
Today's Posts
Mark Forums Read
Thread
:
convert a pipe delimited file to a':" delimited file
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
#
3
(
permalink
)
05-26-2009
ghostdog74
Registered User
Join Date: Sep 2006
Posts: 2,557
if you have Python
Code:
python -c "print '\n'.join([line.strip()[:-1].replace('|',':') for line in open('file')])"
ghostdog74
View Public Profile
Find all posts by ghostdog74
Find ghostdog74's past nominations received
Find ghostdog74's present nominations given