From: Peter Jones Date: Fri, 5 Jun 2009 14:20:13 +0000 (-0400) Subject: Don't use backticks, use $() X-Git-Tag: 0.1~102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3871f8f53bc15ed6c0ec55e9ee705dea4121e9df;p=thirdparty%2Fdracut.git Don't use backticks, use $() This is a minor style fix. --- diff --git a/modules.d/40network/install b/modules.d/40network/install index 3a06f79a1..836c57feb 100755 --- a/modules.d/40network/install +++ b/modules.d/40network/install @@ -1,7 +1,7 @@ #!/bin/bash dracut_install ip dhclient hostname # Include wired net drivers, excluding wireless -for modname in `find "/lib/modules/$kernel/kernel/drivers" -name '*.ko'`; do +for modname in $(find "/lib/modules/$kernel/kernel/drivers" -name '*.ko'); do if nm -uPA $modname | grep -q eth_type_trans; then if echo "$modname" | grep -q wireless; then continue