#!/bin/sh
[ "$1" = "" ] && echo "usage: $0 <route-prefix> # to list all routes starting with route-prefix" && exit

/sbin/route -n | grep ^$1 | sort
