diff options
-rw-r--r-- | chapter07/ethnet.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter07/ethnet.xml b/chapter07/ethnet.xml index 933354ba6..1f0e01800 100644 --- a/chapter07/ethnet.xml +++ b/chapter07/ethnet.xml @@ -37,7 +37,7 @@ case "$1" in # Obtain all the network card configuration files # - for interface in $(ls /etc/sysconfig/network-scripts/ifcfg* | \ + for interface in $(/bin/ls /etc/sysconfig/network-scripts/ifcfg* | \ grep -v ifcfg-lo) do # @@ -79,7 +79,7 @@ case "$1" in # Obtain all the network card configuration files # - for interface in $(ls /etc/sysconfig/network-scripts/ifcfg* | \ + for interface in $(/bin/ls /etc/sysconfig/network-scripts/ifcfg* | \ grep -v ifcfg-lo) do # |