Bash 표준출력에 내용 추가

1 개요[ | ]

Bash 표준출력에 내용 추가
root@wsl:~# cat a.txt
hello
world

2 cat & echo[ | ]

root@wsl:~# cat a.txt | cat - <(echo -e 'lorem\nipsum')
hello
world
lorem
ipsum
root@wsl:~# cat a.txt | cat - <(echo -e 'lorem\nipsum') > b.txt
root@wsl:~# cat b.txt
hello
world
lorem
ipsum

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}