aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fix_nt_symbol_path.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fix_nt_symbol_path.sh')
-rw-r--r--fix_nt_symbol_path.sh6
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
}