Makefile
[mirrors/Programs.git] / bash / scannery / internet-graber
CommitLineData
21c4e167
H
1#!/bin/bash
2
3random_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.162889 seconds and 4 git commands to generate.