You're viewing a single thread.
...this is so much more cursed than it needs to be. If you want to bash in C just
system("echo hello world");
108 0 ReplyThat wouldn't necessarily be bash though
56 0 ReplyFine,
system("bash -c 'echo hello world'");
then!59 0 ReplyNow print "¯\_(ツ)_/¯" with the quotes
10 0 ReplyI decided to throw my PC in the composter and become a gardener
16 0 Replymy 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 quotes4 0 ReplyThat was actually the first line of C I've ever written so there's no way I'm guessing the right number of escapes, but I guess I'd cheat by finding the value of each char and printing those one at a time.
3 0 Reply
Fair, should've just said shell
20 0 Reply