12 lines
129 B
Bash
Executable File
12 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ -x /usr/bin/netstat ] ; then
|
|
echo ""
|
|
echo "Network interface status:"
|
|
|
|
netstat -i
|
|
fi
|