diff options
author | Thomas Bächler <thomas@archlinux.org> | 2007-10-21 10:53:28 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2007-10-21 10:53:28 +0200 |
commit | bc1b5289228e74641a61cff3bb8b3751713dcf54 (patch) | |
tree | 474605e38516696fadb521915b4537c35c97118b /network | |
parent | 1828938d4406d5a95b7c89828f61600f9e6975a6 (diff) |
replace all remaining backticks with $(...)
Diffstat (limited to 'network')
-rwxr-xr-x | network | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -32,7 +32,7 @@ ifup() return 1 fi # don't bring up an interface that's already up - [ "`/sbin/ifconfig ${1} 2>/dev/null | grep UP`" ] && return 0 + [ "$(/sbin/ifconfig ${1} 2>/dev/null | grep UP)" ] && return 0 eval iwcfg="\$wlan_${1}" if [ "$iwcfg" != "" ]; then sh -c "/usr/sbin/iwconfig $iwcfg" @@ -58,7 +58,7 @@ ifdown() eval ifcfg="\$${1}" if [ "$ifcfg" = "dhcp" ]; then if [ -f /var/run/dhcpcd-${1}.pid ]; then - kill `cat /var/run/dhcpcd-${1}.pid` + kill $(cat /var/run/dhcpcd-${1}.pid) else # No .pid file, just bring the interface itself down /sbin/ifconfig ${1} down @@ -132,7 +132,7 @@ bridge_up() for br in ${BRIDGE_INTERFACES[@]}; do if [ "$br" = "${br#!}" ]; then # if the bridge already exists, remove it - if [ "`/sbin/ifconfig $br 2>/dev/null`" ]; then + if [ "$(/sbin/ifconfig $br 2>/dev/null)" ]; then /sbin/ifconfig $br down /usr/sbin/brctl delbr $br fi |