if (1) Linux Manual Page
NAME if – conditionally execute a command Synopsis if CONDITION; COMMANDS_TRUE…; [else; COMMANDS_FALSE…;] end Description if will execute the command CONDITION. If the condition’s exit status is 0, the commands COMMANDS_TRUE will execute. If the exit status is not 0 and else is given, COMMANDS_FALSE will be executed. In order to use the exit status…
