回答:
-pipeline 以外の複数行コマンドをコメントしようとしているときにこの質問が発生した場合:
$ echo 'foo' |
sed -e 's/f/a/' `: # change first f to a` \
-e 's/o/b/' `: # change first o to b` \
-e 's/o/c/' `: # change second o to c`
コメントの自動化のような本当にひねくれた何かをしているのでなければ、パイプについてのMikelの答えよりもこれを好む理由はわかりませんが、本当にしたいのなら:
$ echo 'foo' |
sed 's/f/a/' | `: # change first f to a` \
sed 's/o/b/' | `: # change first o to b` \
sed 's/o/c/' `: # change second o to c`
または:
$ echo 'foo' |
sed 's/f/a/' `: # change first f to a` |
sed 's/o/b/' `: # change first o to b` |
sed 's/o/c/' `: # change second o to c`
出典:http : //unix.derkeiler.com/Newsgroups/comp.unix.solaris/2005-07/0991.html