Blame ip/routef

Packit Service 3880ab
#! /bin/sh
Packit Service 3880ab
# SPDX-License-Identifier: GPL-2.0
Packit Service 3880ab
Packit Service 3880ab
if [ -z "$*" ] ; then
Packit Service 3880ab
	exec ip -4 ro flush  scope global  type unicast
Packit Service 3880ab
else
Packit Service 3880ab
	echo "Usage: routef"
Packit Service 3880ab
	echo
Packit Service 3880ab
	echo "This script will flush the IPv4 routing table"
Packit Service 3880ab
fi