diff options
author | Roy Marples <roy@marples.name> | 2007-11-29 11:23:06 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-11-29 11:23:06 +0000 |
commit | 82df7e4584282896a0618f14cca2dd3f3d23e8a2 (patch) | |
tree | 05a0c01d32adbbb2df8d833b97918454a3178a04 /init.d.Linux | |
parent | 50161bef0e27ca235d876b888ae5abcafbec2ac7 (diff) |
Use shorthand for loops
Diffstat (limited to 'init.d.Linux')
-rwxr-xr-x | init.d.Linux/modules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d.Linux/modules b/init.d.Linux/modules index d2f25b67..4c21fdb5 100755 --- a/init.d.Linux/modules +++ b/init.d.Linux/modules @@ -45,7 +45,7 @@ load_modules() { eindent local x= cnt=0 - for x in "$@"; do + for x; do set -- ${x} ebegin "Loading module $1" eval modprobe -q "$@" |