# The loopback interface
auto lo
iface lo inet loopback
# Wireless interfaces
#
# Example of an unencrypted (no WEP or WPA) wireless connection
# that connects to any available access point:
#
iface wlan0 inet dhcp
wireless_mode managed
wireless_essid any
iface tiwlan0 inet dhcp
wireless_mode managed
wireless_essid any
#
#
# Same as above but locked to a specific access point:
#
#iface wlan0 inet dhcp
# wireless_mode managed
# wireless-essid some-essid
#
# A WEP encrypted connection locked to a specific access point:
#
#iface wlan0 inet dhcp
# wireless-essid some-essid
# wireless-key s:My-PlainText-Password
# wireless-mode managed
#
# A WPA1 or WPA2 encrypted connection locked to a specific access point.
# This is the best option for non-roaming, single-network usage.
# Note that your card may require a firmware update to use WPA.
# Some distributions install a temporary volatile firmware update on ifup.
#
#iface wlan0 inet dhcp
# wpa-essid some-essid
# wpa-psk My-PlainText-Password
#
# A WPA1 or WPA2 encrypted connection using an external configuration file
# for wpa-supplicant. This is the way to go if you need to configure multiple
# networks with different keys and / or WPA settings and roaming support.
#
# iface wlan0 inet dhcp
# wpa-conf /etc/wpa_supplicant.conf
# wpa-driver hostap
>>后续的操作 {seg=$2==iface?1:0}怎么理解? ...
they are the same
seg=$2==iface?1:0
seg=($2==iface)?1:0
if($2==iface)seg=1;else seg=0
note: we assign iface variable to be "eth0"
we just want to change data in eth0 block/segment