문서의 이전 판입니다!
source /dev/stdin 으로 해주면 된다.ls | sed ... | source /dev/stdin
cat <<EOF >/home/a.config first line second line third line EOF
find . -type f |
while read -r line
do
echo "$line"
done
# 혹은
while read -r line
do
echo "$line"
done < <(find . -type f)