Update the Bash example with the new Ruby front end.

This commit is contained in:
Renato Silva 2014-09-11 17:37:56 -03:00
parent ae63632a7e
commit 7fd66536cf
1 changed files with 2 additions and 5 deletions

View File

@ -20,11 +20,8 @@
## used instead. Short version is not available in this
## format.
# Bash version
source easyoptions.sh "$@" || exit
# Ruby version (faster)
# eval "$(from="$0" ./easyoptions.rb "$@" || echo exit 1)"
source easyoptions || exit # Ruby implementation
# source easyoptions.sh || exit # Bash implementation, slower
# Boolean and parameter options
[[ -n "$some_option" ]] && echo "Option specified: --some-option"