![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| SED Substitution | subhendu81 | Shell Programming and Scripting | 5 | 11-14-2008 05:02 AM |
| help with awk substitution | daytripper1021 | Shell Programming and Scripting | 3 | 09-08-2008 09:58 PM |
| Bad Substitution | D_Redd74 | Shell Programming and Scripting | 3 | 02-07-2007 05:48 PM |
| ksh substitution | solea | Shell Programming and Scripting | 2 | 08-09-2004 05:30 AM |
| substitution | supercbw | Shell Programming and Scripting | 1 | 06-07-2002 03:07 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Help with sed/substitution!
I have file.txt
Code:
1 4 7 9 3 Code:
cat file.txt | sed 's/"\t"/ /g' > t.txt Help? |
|
||||
|
Try this.. may help u
Code:
cat file.txt | tr -s '\t' ' ' > t.txt |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|