Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit - prohibited by configuration in /home/u547966/brikov.ru/www/wp-content/plugins/admin-menu-editor/menu-editor.php on line 745
#!/bin/sh
iface="$1"
if [ -z "$iface" ] ; then
echo "Usage: $0 IFACE"
exit 1
fi
if ifconfig "$iface" | grep -Fw UP >/dev/null
then
echo UP
else
echo DOWN
fi