hairyhenderson/sed

By hairyhenderson

Updated 7 days ago

GNU sed in a container!

Image

100K+

hairyhenderson/sed

Just GNU sed in a container...

Use like this:

$ echo "hi world" | docker run --rm -i hairyhenderson/sed 's/i/ello/'
hello world

Or with an alias:

alias sed='docker run --rm -i hairyhenderson/sed'
$ echo "hi world" | sed 's/i/ello/'
hello world

Docker Pull Command

docker pull hairyhenderson/sed