my best guess: system("bash -c 'echo \\\"¯\\\\_(ツ)_/¯\\\"'");
system("bash -c 'echo \\\"¯\\\\_(ツ)_/¯\\\"'");
which will get parsed as: bash -c 'echo \"¯\\_(ツ)_/¯\"'
bash -c 'echo \"¯\\_(ツ)_/¯\"'
which will run: echo "¯\_(ツ)_/¯"
echo "¯\_(ツ)_/¯"
and since echo just prints whatever was given to it, it'll print "¯\_(ツ)_/¯" with the quotes
echo
"¯\_(ツ)_/¯"
my best guess:
system("bash -c 'echo \\\"¯\\\\_(ツ)_/¯\\\"'");
which will get parsed as:
bash -c 'echo \"¯\\_(ツ)_/¯\"'
which will run:
echo "¯\_(ツ)_/¯"
and since
echo
just prints whatever was given to it, it'll print"¯\_(ツ)_/¯"
with the quotes