1
0
Files
irix-657m-src/irix/cmd/bsd/netstat/netstat.sh
2022-09-29 17:59:04 +03:00

11 lines
152 B
Bash
Executable File

#!/bin/sh
#
# For mini-root only
#
if [ `/usr/sbin/sysconf KERN_POINTERS` -eq 64 ]
then
exec /usr/etc/netstat_64 $*
else
exec /usr/etc/netstat_32 $*
fi