xref: /aosp_15_r20/external/iproute2/ip/routef (revision de1e4e894b0c224df933550f0afdecc354b238c4)
1#! /bin/sh
2
3if [ -z "$*" ] ; then
4	exec ip -4 ro flush  scope global  type unicast
5else
6	echo "Usage: routef"
7	echo
8	echo "This script will flush the IPv4 routing table"
9fi
10