On Sun, Dec 22, 2024 at 12:49:07AM +0700, Budi wrote: > How is Bash' code to store string of any characters should be containing > pair of "" and '' at the same time explicitly, being exact verbatim so, > ie. cannot be modified, escaped or etc, as expected from ordinary/naive > human writing), into a variable
You need to escape one of the types of quotes. Double quotes is generally simpler: $ x="foo \"foo\" and 'bar' content" $ echo "$x" foo "foo" and 'bar' content Since you can't "\" escape inside of single quotes, you would end up with something more convoluted, like: $ x='foo "foo" and '"'"'bar'"'"' content' $ echo "$x" foo "foo" and 'bar' content Alternatively: $ x='foo "foo" and '"'bar' content" $ echo "$x" foo "foo" and 'bar' content Eric