Eu quero fazer algo assim:
$ NAME=John
$ cat << '==end' > test
My name is $NAME
==end
$ cat test
My name is John
Alguma ideia?
linux
bash
shell-script
ChocoDeveloper
fonte
fonte
cat << "==end" > test
), mas as aspas rígidas impedem a substituição.