How do I paste multi-line bash codes into terminal and run it all at once?
Try putting \ at the end of each line before copying it. Example: echo “Hello world” && \ script_b.sh echo $? The exit code ($?) is now the full sequence of commands, and not just the last command.