2023-11-16 23:19:36 -05:00

8 lines
82 B
Plaintext
Executable File

v="a\nb\nc\n"
echo "$v"
printf "$v"
v='a\nb\nc\n'
echo "$v"
printf "$v"
echo Done