summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vorel <petr.vorel@gmail.com>2015-03-18 20:37:17 +0100
committerDan Williams <dcbw@redhat.com>2015-03-18 15:07:59 -0500
commit1e646f30f2b225e87cd602a089993ba6bf0ec5b4 (patch)
tree01f02053617383b4505685833d694f8c767131a0
parent396dc2b3b40f9b33e9c55f8e72bb192739983476 (diff)
downloadNetworkManager-1e646f30f2b225e87cd602a089993ba6bf0ec5b4.tar.gz
examples: bash: print errors int stderr
+ whitespace Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
-rwxr-xr-xexamples/shell/active-wifi.sh2
-rwxr-xr-xexamples/shell/disconnect-device.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/shell/active-wifi.sh b/examples/shell/active-wifi.sh
index 1c9466b7a6..2ff5419017 100755
--- a/examples/shell/active-wifi.sh
+++ b/examples/shell/active-wifi.sh
@@ -76,7 +76,7 @@ show_active_ssids()
BSSID=`get_property $ACTIVE_AP $ACCESS_POINT_IFACE "HwAddress"`
echo "Device '$INTERFACE' is connected to '$SSID' (BSSID=$BSSID)"
else
- echo "No active AP on device '$INTERFACE'"
+ echo "No active AP on device '$INTERFACE'" >&2
fi
fi
done
diff --git a/examples/shell/disconnect-device.sh b/examples/shell/disconnect-device.sh
index 045d64d7f6..e8af42fccf 100755
--- a/examples/shell/disconnect-device.sh
+++ b/examples/shell/disconnect-device.sh
@@ -61,7 +61,7 @@ disconnect_device ()
fi
done
- echo "Device with interface '$1' not found."
+ echo "Device with interface '$1' not found." >&2
return 1
}
@@ -70,7 +70,7 @@ disconnect_device ()
if [ ! -n "$1" ]; then
echo "Usage: `basename $0` <interface name>"
exit 2
-fi
+fi
# disconnect device
disconnect_device $1