Sed Usage
Syntax
$ sed [options] command [input-file]
With pipeline
$ cat report.txt | sed 's/Nick/John/g'
$ echo '123abc' | sed 's/[0-9]+//g'
Comments
Syntax
$ sed [options] command [input-file]
With pipeline
$ cat report.txt | sed 's/Nick/John/g'
$ echo '123abc' | sed 's/[0-9]+//g'