]> git.stg.codes - stg.git/blobdiff - projects/sgauthstress/rmifs.sh
Port to CMake, get rid of os_int.h.
[stg.git] / projects / sgauthstress / rmifs.sh
diff --git a/projects/sgauthstress/rmifs.sh b/projects/sgauthstress/rmifs.sh
deleted file mode 100755 (executable)
index 0663b9d..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-users=`cat users.1000`
-hi=0
-lo=0
-for user in $users
-do
-    if (( $lo > 254 ))
-    then
-        lo=0
-        let hi++
-    fi
-    let lo++
-    ip="10.22.$hi.$lo/32"
-    ip addr del $ip dev eth0
-done