make-ca: Handle getopt style short options in get_args().
This commit is contained in:
parent
de5bf4a332
commit
c79ee2ff79
@ -12,6 +12,7 @@
|
|||||||
- Fix output of NSSDB and Java PCKS#12 stores
|
- Fix output of NSSDB and Java PCKS#12 stores
|
||||||
- Correct incorrectly named get_p11_val()
|
- Correct incorrectly named get_p11_val()
|
||||||
- Use p11label value and .p11-kit extension for anchor naming
|
- Use p11label value and .p11-kit extension for anchor naming
|
||||||
|
- Handle getopt style short options in get_args()
|
||||||
1.7 - Revert help2man update (requires complete perl environment)
|
1.7 - Revert help2man update (requires complete perl environment)
|
||||||
1.6 - Fix install target for make -j#
|
1.6 - Fix install target for make -j#
|
||||||
- Add detailed dependency info and add note about configuration file
|
- Add detailed dependency info and add note about configuration file
|
||||||
|
13
make-ca
13
make-ca
@ -9,6 +9,8 @@
|
|||||||
# Bruce Dubbs
|
# Bruce Dubbs
|
||||||
# Graham Weldon
|
# Graham Weldon
|
||||||
|
|
||||||
|
shopt -s extglob;
|
||||||
|
|
||||||
VERSION="1.8"
|
VERSION="1.8"
|
||||||
MAKE_CA_CONF="/etc/make-ca.conf"
|
MAKE_CA_CONF="/etc/make-ca.conf"
|
||||||
|
|
||||||
@ -218,6 +220,17 @@ function get_args(){
|
|||||||
echo -e "$(basename ${0}) ${VERSION}\n"
|
echo -e "$(basename ${0}) ${VERSION}\n"
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
|
# Handle getopt style short args (use extglob instead of loop)
|
||||||
|
-+([a-z,A-Z]))
|
||||||
|
# split up the arguments and call recursively with trailing break
|
||||||
|
arg="${1}"
|
||||||
|
newargs=$( echo ${1} | sed 's@-@@' | \
|
||||||
|
sed 's/.\{1\}/& /g' | \
|
||||||
|
sed 's/[^ ]* */-&/g')
|
||||||
|
newargs="${newargs} $(echo ${@} | sed "s@${arg}@@")"
|
||||||
|
get_args ${newargs}
|
||||||
|
break;
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
showhelp
|
showhelp
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user