Escaping single quotes does not work
echo '\\\''
echo '\\ \''
is valid syntax, since the \'
is escaped.
However on running the shell does not echo the expected result
\'
\ '
echo '\\\''
echo '\\ \''
is valid syntax, since the \'
is escaped.
However on running the shell does not echo the expected result
\'
\ '