1 #!/usr/bin/env bash
2
3 #### Subshell exit code
4 ( false; )
5 echo $?
6 ## stdout: 1
7 ## status: 0