android_mt6572_jiabo/external/iproute2/ip/routef
2025-09-05 16:56:03 +08:00

9 lines
173 B
Bash

#! /bin/sh
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