![]() |
![]()
| ![]() |
![]()
NAMEelse - execute command if a condition is not met SYNOPSISif CONDITION; COMMANDS_TRUE ...; [else; COMMANDS_FALSE ...;] end DESCRIPTIONif will execute the command CONDITION*. If the condition's exit status is 0, the commands COMMANDS_TRUE will execute. If it is not 0 and else is given, COMMANDS_FALSE will be executed. EXAMPLEThe following code tests whether a file foo.txt exists as a regular file. if test -f foo.txt COPYRIGHT2024, fish-shell developers
|