Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Bash exit code

#!/usr/bin/env bash

ls  / > /dev/null 2> /dev/null
echo $?         # 0

ls  /qqrq > /dev/null 2> /dev/null
echo $?         # 1