Feb 25, 2004 #1 ianicr IS-IT--Management Nov 4, 2003 230 GB I used sed to replace a comma with a space in a file eg. sed 's/,/ /3' file.csv how do I change a , to a '?
I used sed to replace a comma with a space in a file eg. sed 's/,/ /3' file.csv how do I change a , to a '?
Feb 25, 2004 1 #2 dickiebird Programmer Feb 14, 2002 758 GB Use " (double-quote) :- sed "s/,/'/3" file.csv HTH Dickie Bird (-))) Upvote 0 Downvote
Feb 25, 2004 Thread starter #3 ianicr IS-IT--Management Nov 4, 2003 230 GB Had a feeling it would be that easy... Thanks mate Upvote 0 Downvote