conn

A script repository to manage connections in Linux.
git clone git://r-36.net/conn
Log | Files | Refs | README | LICENSE

conn (120B)


      1 #!/bin/sh
      2 
      3 if [ ! $UID -eq 0 ];
      4 then
      5 	echo "conn is supposed to be run as root."
      6 	exit 1
      7 fi
      8 
      9 cd /etc/conn
     10 ./run.sh $*
     11 
     12