I'm creating a bash script that will run only once, but after that, it'll create another bash script. I've tried to use CAT EOT, but the problem is that, instead of copy/paste the text inside the new bash, it "executes" all variables inside.
E.g.: instead of write "date=$(date +%d)
", it is writing "date=18
" in the new archive.
How can I make it copy/paste, instead of execute the command?