add func convertCase to convert to uppercase

This commit is contained in:
Asif Bacchus 2020-11-28 02:51:48 -07:00
parent e96be80410
commit 758e00edfc
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,10 @@
### entrypoint script for mariadb container
#
convertCase () {
printf "%s" "$1" | tr "[:lower:]" "[:upper:]"
}
# instantiate variables
sqlCmd='/tmp/cmd.sql'