Just discovered two useful features commonly available in shells:
1. printf "%q" 'thing!'
The %q sequence in the printf commands transforms an argument in a quoted version (see screenshot)
2. disown
This one is a builtin in bash and zsh, but not in dash. It disowns the last background job and, with that, closing the shell won't kill the disowned job. I'm using this for an opener script.
(I know printf isn't a shell builtin, but it is available in most systems, I guess)
@yohanandiamond I found a long Unix & Linux Stack Exchange answer which explains what a mess things are with echo and extensions to printf and why it's generally a good idea to stick to the POSIX-specifed subset of printf:
@ssokolow Thanks for the clarification, this answers pretty much every question I had related to the topic :P