Initial commit

This commit is contained in:
2018-04-30 02:53:44 +02:00
commit f39b0fbcd8
26 changed files with 1755 additions and 0 deletions

11
snippets/declare_i.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
declare -i num=1
while [ $num -lt 128 ] ; do
ping -c 5 195.135.133.$num > /dev/null 2>&1;
if [ "$?" == 0 ]; then
echo 195.135.133.$num;
fi;
let num=$num+1
done