mirror of
https://asciireactor.com/otho/psdlag-agn.git
synced 2024-11-22 17:05:08 +00:00
15 lines
160 B
Bash
15 lines
160 B
Bash
|
|
for line in $(readline)
|
|
do
|
|
echo \
|
|
|
|
|
|
|
|
|
|
fd=3
|
|
while IFS='' read -u $fd -r line || [[ -n "$line" ]]; do
|
|
echo "Text read from file: $line"
|
|
done $fd< "$1"
|
|
|
|
|