Fix exit command in a Bash example.

This commit is contained in:
Renato Silva 2014-07-23 22:31:27 -03:00
parent bf90464756
commit ce37a808f1
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# Encoding: ISO-8859-1 # Encoding: ISO-8859-1
## ##
## EasyOptions 2014.7.9 ## EasyOptions 2014.7.23
## Copyright (c) 2013, 2014 Renato Silva ## Copyright (c) 2013, 2014 Renato Silva
## GNU GPLv2 licensed ## GNU GPLv2 licensed
## ##
@ -59,7 +59,7 @@
## the options into Ruby variables, evaluable export statements will be ## the options into Ruby variables, evaluable export statements will be
## generated for corresponding Bash environment variables. For example: ## generated for corresponding Bash environment variables. For example:
## ##
## eval "$(from="$0" @script.name "$@")" || exit 1 ## eval "$(from="$0" @script.name "$@" || echo exit 1)"
## ##
## If the script containing this command is documented as in the example above, ## If the script containing this command is documented as in the example above,
## and it is executed from command line with the -o and --some-value=10 options, ## and it is executed from command line with the -o and --some-value=10 options,