NetBSD/sbin/route
atatat cdc6282274 Provide a short output format for the get command that only prints the
address corresponding to RTA_GATEWAY, or nothing if it doesn't exist.
Modify the exit value of route depending on this, so that one can do
stuff like:

#!/bin/sh
gw=`route -sn get default 2>/dev/null`
if [ -z "$gw" ]; then
	echo no default route
	exit 1
fi
ping -w1 -c1 $gw >/dev/null 2>&1
if ! route -sn get $gw >/dev/null; then
	echo default gateway not responding
	exit 1
fi
echo default gateway is at $gw
2001-10-24 18:40:16 +00:00
..
Makefile
ccitt_addr.c
extern.h Print a R on reject routes to indicate that they're not normal routes, 2001-10-24 16:05:06 +00:00
keywords.c
keywords.h
keywords.sh
route.8 Provide a short output format for the get command that only prints the 2001-10-24 18:40:16 +00:00
route.c Provide a short output format for the get command that only prints the 2001-10-24 18:40:16 +00:00
show.c Print a R on reject routes to indicate that they're not normal routes, 2001-10-24 16:05:06 +00:00