Convert line breaks from Windows to Unix format.

This commit is contained in:
Renato Silva 2014-09-15 17:10:41 -03:00
parent 8da3c83852
commit cd0f383822
1 changed files with 26 additions and 26 deletions

View File

@ -1,26 +1,26 @@
#!/bin/bash #!/bin/bash
## ##
## EasyOptions Bash Front End 2014.9.11 ## EasyOptions Bash Front End 2014.9.15
## Copyright (c) 2014 Renato Silva ## Copyright (c) 2014 Renato Silva
## GNU GPLv2 licensed ## GNU GPLv2 licensed
## ##
## This is the Bash front end for EasyOptions. It is just a wrapper to the ## This is the Bash front end for EasyOptions. It is just a wrapper to the
## default implementation for Bash scripts, which is currently Ruby. The pure ## default implementation for Bash scripts, which is currently Ruby. The pure
## Bash implementation is available as easyoptions.sh. This wrapper makes usage ## Bash implementation is available as easyoptions.sh. This wrapper makes usage
## cleaner and implementation-agnostic: ## cleaner and implementation-agnostic:
## ##
## source easyoptions || exit ## source easyoptions || exit
## ##
## Ruby is currently also the reference implementation, meaning this is the main ## Ruby is currently also the reference implementation, meaning this is the main
## focus of development. However the idea is that new features are applied to ## focus of development. However the idea is that new features are applied to
## all implementations. For knowing how up-to-date with the reference an ## all implementations. For knowing how up-to-date with the reference an
## implementation is, please refer to the commit log for the source code ## implementation is, please refer to the commit log for the source code
## repository. For help about using EasyOptions, please refer to the ## repository. For help about using EasyOptions, please refer to the
## corresponding implementation: ## corresponding implementation:
## ##
## easyoptions.sh --help ## easyoptions.sh --help
## easyoptions.rb --help ## easyoptions.rb --help
## ##
eval "$(from="$0" easyoptions.rb "$@" || echo exit 1)" eval "$(from="$0" easyoptions.rb "$@" || echo exit 1)"