#!/bin/sh
...
read var
#user enters: it doesn't work
...
echo 'Some text and $var' > myfile.txt
Ожидаемый вывод:
cat myfile.txt
#Some text and it doesn't work
Фактический вывод:
cat myfile.txt
#Some text and $var
Так как отобразить содержимое в файл со значением переменной $var
?