이 질문에 대한 의견을 말하고자하는 동안 비 -pipeline multiline 명령 :
$ 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