44

I have a large file with many scattered file paths that look like

lolsed_bulsh.png

I want to prepend these file names with an extended path like:

/full/path/lolsed_bullsh.png

I'm having a hard time matching and capturing these. currently i'm trying variations of:

cat myfile.txt| sed s/\(.+\)\.png/\/full\/path\/\1/g | ack /full/path

I think sed has some regex or capture group behavior I'm not understanding

kevzettler
  • 4,655
  • 14
  • 51
  • 95
  • BRE doesn't support one or more `+`. Use `..*` instead (if you need to make sure there is at least 1 character). – nhahtdh May 25 '15 at 04:45

3 Answers3

57

In your regex change + with *:

sed -E "s/(.*)\.png/\/full\/path\/\1/g" <<< "lolsed_bulsh.png"

It prints:

/full/path/lolsed_bulsh

NOTE: The non standard -E option is to avoid escaping ( and )

higuaro
  • 15,322
  • 3
  • 34
  • 41
  • 3
    The detail I missed is that first capture group is on `\1`, NOT `\0`, which appears to be the whole current line. – ThorSummoner Jun 08 '17 at 21:16
19

Save yourself some escaping by choosing a different separator (and -E option), for example:

cat myfile.txt | sed -E "s|(..*)\.png|/full/path/\1|g" | ack /full/path
Vukašin Manojlović
  • 3,557
  • 3
  • 18
  • 31
Cezariusz
  • 373
  • 6
  • 14
9

sed uses POSIX BRE, and BRE doesn't support one or more quantifier +. The quantifier + is only supported in POSIX ERE. However, POSIX sed uses BRE and has no option to switch to ERE.

Use ..* to simulate .+ if you want to maintain portability.

Or if you can assume that the code is always run on GNU sed, you can use GNU extension \+. Alternatively, you can also use the GNU extension -r flag to switch to POSIX ERE. The -E flag in higuaro's answer has been tagged for inclusion in POSIX.1 Issue 8, and exists in POSIX.1-202x Draft 1 (June 2020).

silkfire
  • 22,873
  • 14
  • 77
  • 98
nhahtdh
  • 54,546
  • 15
  • 119
  • 154
  • In GNU sed the `-r` invokes the `ERE` functionality however see [here](http://stackoverflow.com/questions/3139126/whats-the-difference-between-sed-e-and-sed-e) for further details. – potong May 25 '15 at 08:55