diff options
Diffstat (limited to '')
-rw-r--r-- | fix_nt_symbol_path.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fix_nt_symbol_path.sh b/fix_nt_symbol_path.sh index 907d93b..21c0ddd 100644 --- a/fix_nt_symbol_path.sh +++ b/fix_nt_symbol_path.sh @@ -34,9 +34,9 @@ dump() { } str_tolower() { - while [ "$#" -ne 0 ]; do - echo "$1" | tr '[:upper:]' '[:lower:]' - shift + local s + for s; do + echo "${s,,}" # | tr '[:upper:]' '[:lower:]' done } |