∀
Size: a a a
Vs
Лс
~ ➜ echo "123\nword\nline" > test
~ ➜ bash test.sh test
123
word
line
~ ➜ echo "an * here" >> test
~ ➜ bash test.sh test
123
word
line
an * here
~ ➜ cat test.sh
IFS=$'\n'
for line in "$(cat "$1")"; do
echo "$line"
done
~ ➜Лс
~ ➜ echo "*" >> test
~ ➜ bash test.sh test
123
word
line
an * here
*
~ ➜ cat test.sh
IFS=$'\n'
for line in "$(cat "$1")"; do
echo "$line"
done
~ ➜
Лс
Лс
Лс
~ ➜ echo "line is $line" >> test
~ ➜ bash test.sh test
123
word
line
an * here
*
line is
~ ➜Лс
Лс
~ ➜ echo "$( echo 'you have been pwn-ed!')" >> test
~ ➜ bash test.sh test
123
word
line
an * here
*
line is
you have been pwn-ed!
~ ➜