12 lines
129 B
Bash
Executable File
12 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
#Ben&Jamyn
|
|
|
|
echo 'Opening iplist'
|
|
$EDITOR iplist.txt
|
|
|
|
python main.py > out.tmp
|
|
|
|
awk '{print $2}' out.tmp | uniq -c
|
|
|
|
|