#!/gnu/store/4y5m9lb8k3qkb1y9m02sw9w9a6hacd16-bash-minimal-5.1.8/bin/sh
# SPDX-License-Identifier: GPL-2.0

if [ -z "$*" ] ; then
	exec ip -4 ro flush  scope global  type unicast
else
	echo "Usage: routef"
	echo
	echo "This script will flush the IPv4 routing table"
fi
