Makefile
[mirrors/Programs.git] / bash / scannery / internet-graber
1 #!/bin/bash
2
3 random_ip() {
4 for i in $(seq 0 3); do
5 if [[ $i != 0 ]]; then echo -n '.'; fi;
6 echo -n $[$RANDOM %255];
7 done;
8 echo;
9 }
This page took 0.233806 seconds and 4 git commands to generate.