printf "what is your name?" read n printf "hello %s" $n # unset IFS then read in line printf 'i love my country' | { IFS= read -r line; printf "$line"; } # sometime i would like to read several lines without specify those lines # <