Quiero hacer algo como esto:
$ NAME=John
$ cat << '==end' > test
My name is $NAME
==end
$ cat test
My name is John
¿Algunas ideas?
linux
bash
shell-script
ChocoDeveloper
fuente
fuente
cat << "==end" > test
), pero las comillas rígidas evitan la sustitución.