I have a text file, save from an Asterisk db, that looks like so:

/general/astbin                                   : /asterisk/bin
/general/astlang                                  : /var/lib/asterisk/sounds/za
/general/cdrdays                                  : 7
/general/cellc1                                   : _084[02-9]XXXXXX
/general/cellc2                                   : _0841.

I want to only strip the first two forward slashes of each line and replace it with spaces, but can figure it out. Doing sed -i 's/\// /g' will remove ALL forward slashes, which I don't want.

Anyone have some thoughts?

link|improve this question
feedback

4 Answers

up vote 3 down vote accepted

Quick trick:

sed -i -e 's|/| |' -e 's|/| |' inputfile
link|improve this answer
I think you need to remove the gs. – Michael J. Barber Jul 8 '11 at 10:12
I think you mean sed -i -e 's|/| |' -e 's|/| |' – Ulrich Dangel Jul 8 '11 at 10:12
@Michael, yea, I quickly edited that. :) – ssapkota Jul 8 '11 at 10:15
@mru, sed needs a input, whether you pipe it, or give a file as argument. -i (as shown by @stephen) implicitly refers to file input. – ssapkota Jul 8 '11 at 10:17
Thanks, that did the trick – Stephen Jul 8 '11 at 10:23
show 1 more comment
feedback

Below you have the solution doing it in one go, as opposed to other solutions (*):

sed -i 's,/\([^/]*\)/, \1 ,' file

(*) except for Thaddee Tyl's one, which was sent just before mine, but unfortunately not working initially.

Why it is better to do it in one go?

Because it is more sane and just more efficient.

Here is some flawed analogy. If you look for two books by author Z in a library you haven't been before, you do not find first one, go out from the library, come in again and start looking for second one forgetting about previous attempt.

"Proof"

# use tmpfs to conduct test in memory, avoiding disk I/O overhead
$ mkdir stupid-sed-speed-test
$ sudo mount -t tmpfs tmpfs stupid-sed-speed-test/ -o size=1050M
$ cd stupid-sed-speed-test/

# create 512 MB + "//\n" at the end
$ awk 'BEGIN{printf"%*s",512*1024**2,"";print"//";exit}' >file

# "forgetting" solution

$ time sed -e 's|/| |' -e 's|/| |' file >/dev/null 

real    0m4.817s
user    0m3.388s
sys     0m1.424s

$ time sed -i -e 's|/| |' -e 's|/| |' file 

real    0m5.450s
user    0m3.360s
sys     0m2.076s

# recreate 512 MB + "//\n" at the end
$ awk 'BEGIN{printf"%*s",512*1024**2,"";print"//";exit}' >file

# "one go" solution

$ time sed 's,/\([^/]*\)/, \1 ,' file >/dev/null

real    0m3.548s
user    0m2.080s
sys     0m1.464s

$ time sed -i 's,/\([^/]*\)/, \1 ,' file

real    0m4.155s
user    0m2.068s
sys     0m2.080s

(my hardware specs for those curious about them: Desktop)

Difference is surely not a mind-blowing one, but 25% is sometimes a lot.

link|improve this answer
@Stephen: I thought it will be good to update my answer to better show you the difference between "one go" solution and naive one (accepted by you). – przemoc Jul 8 '11 at 11:24
Upvote for providing evidence with your 'theory.' Go science! – Marcin Jul 8 '11 at 13:17
@przemoc: Thanks for the update, although it the solution I tried went so quick, I didn't even notice it ;) – Stephen Jul 11 '11 at 6:13
feedback

This should work:

sed -e 's/\// /' -e 's/\// /'
link|improve this answer
1  
sed does not require using / as a separator, in this case using something like : instead would improve readability. – Vatine Jul 8 '11 at 11:37
feedback

This ought to work:

sed -i 's/^\/\([^\/]*\)\/ /\1 /'
link|improve this answer
You forgot about second space. Also using any character is wrong, because pattern matching is greedy by default, thus it won't work. – przemoc Jul 8 '11 at 10:20
This was corrected. – Thaddee Tyl Jul 8 '11 at 10:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.