This commit is contained in:
Dirk 2016-11-05 12:26:18 +01:00
parent f1d609e008
commit d698005313
1 changed files with 8 additions and 4 deletions

View File

@ -558,9 +558,13 @@ trim_trailing_space() {
echo "${1%%*( )}" echo "${1%%*( )}"
} }
toupper() { if [[ $(uname) == "Linux" ]] ; then
echo -n "$1" | tr 'a-z' 'A-Z' toupper() { echo -n "${1^^}" ; }
} tolower() { echo -n "${1,,}" ; }
else
toupper() { echo -n "$1" | tr 'a-z' 'A-Z'; }
tolower() { echo -n "$1" | tr 'A-Z' 'a-z' ; }
fi
is_number() { is_number() {
[[ "$1" =~ ^[1-9][0-9]*$ ]] && \ [[ "$1" =~ ^[1-9][0-9]*$ ]] && \
@ -1543,7 +1547,7 @@ normalize_ciphercode() {
HEXC="$part1$part2$part3" HEXC="$part1$part2$part3"
fi fi
#TODO: we should just echo this and avoid the global var HEXC #TODO: we should just echo this and avoid the global var HEXC
HEXC=$(echo $HEXC | tr 'A-Z' 'a-z' | sed 's/0x/x/') #tolower + strip leading 0 HEXC=$(tolower "$HEXC"| sed 's/0x/x/') # strip leading 0
return 0 return 0
} }