DEV Community

Eduardo Issao Ito
Eduardo Issao Ito

Posted on • Edited on

1

Bash: reading lines

Reading lines from a $FILE in bash:

while read LINE
do
    echo "$LINE"
done < $FILE

Reading from standard input:

while read LINE
do
    echo "$LINE"
done <&0

Reading lines from a file as a script parameter, and if it's not found, from standard input:

while read LINE
do
    echo "$LINE"
done < "${1:-/dev/stdin}"

Source: http://mywiki.wooledge.org/BashFAQ/024

Top comments (0)

Image of Docusign

🛠️ Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more