5

I am attempting to use SED for the first time. To complicate matters, I am using it in Windows. I downloaded from this source. Since I don't have installation privileges on my work machine, I created a folder in my profile for executables and added it to my PATH.

I am having issues trying to use SED for the first time. It keeps failing with the error:

sed: -e expression #1, char 1: unknown command: `''

I have tried a few different samples from this how to, but I just can't get it. I found noone else is having this problem. What should I try? I have tried encapsulating it in quotes, double quotes, and back-quotes. Nothing seems to help.

Worthwelle
  • 4,538
  • 11
  • 21
  • 32
TheSavo
  • 442
  • 1
  • 4
  • 13
  • What exactly are you running? – johnny Feb 15 '12 at 16:08
  • I would highly recommend cygwin, the windows shell is such a PITA for unix-like commands. However, if you are planning on sticking with the windows shell, the easiest way ive found to run sed or awk is by creating a script file and then calling the file with the -f flag. For example `sed -f some_sed_script.sed` or `awk -f some_awk_script.awk` – SiegeX Feb 15 '12 at 17:10
  • Can you paste exactly what you're giving to the windows shell? – Rob Feb 15 '12 at 17:17
  • I thought I did include my input. I wish i did, because now it works after I tried @RedGrittyBrick gave – TheSavo Feb 15 '12 at 18:09

3 Answers3

6

Unlike the Unixes, the Windows command-line shell does not perform any word-splitting and does not strip away the quotes; the program just receives a single string containing the entire command line. This means that not all programs can follow the same quoting rules.

In this case, the GnuWin32 version of sed only supports one quoting style – " double quotes ". For example, in my tests the following works fine:

sed "s/foo/bar/"

You can also get sed from Cygwin, along with a more-complete Unix-like system: shells, editors, other tools. It will be easier if you use a Unix shell for learning, to avoid such syntax issues in the future.

Rich Homolka
  • 31,057
  • 6
  • 55
  • 80
u1686_grawity
  • 426,297
  • 64
  • 894
  • 966
4
C:\>sed sdf
sed: -e expression #1, char 3: Unterminated `s' command

C:\>echo aaa > f
C:\>sed -e "s/a/x/" < f
xaa

This is using sed from unxutils

RedGrittyBrick
  • 81,981
  • 20
  • 135
  • 205
1

Appreciate this is an old question however if you have Git Bash installed you can use a lot of unix features (sed /ssh / scp/ grep) in a Windows environment.

rup
  • 111
  • 2