1 2 3 4 5 6 7 8 9 10
#!/bin/sh echo "Subshell assignment" a=a (a=b) echo $a echo "Subshell status" (exit 1) && echo "shouldn't happen" true # to clear the last status