init
This commit is contained in:
commit
28f07b9e2e
3 changed files with 1824 additions and 0 deletions
4
README.md
Normal file
4
README.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
# grief
|
||||
this repository contains a list of port scanned griefable minecraft servers. use `./next_serv.sh` in order to pop the next server of the list and ping it in order to get some information. the script requires [mcstat](https://github.com/LordMZTE/utils/tree/master/mcstat) to work.
|
||||
|
||||
feel free to create a PR removing servers that have been griefed
|
1813
grief_servers.txt
Normal file
1813
grief_servers.txt
Normal file
File diff suppressed because it is too large
Load diff
7
next_serv.sh
Normal file
7
next_serv.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
SERV=$(head -n 1 grief_servers.txt)
|
||||
echo $SERV
|
||||
echo $SERV | clip
|
||||
mcstat $SERV
|
||||
sed -i '1d' grief_servers.txt
|
||||
echo "$(cat grief_servers.txt | wc -l) servers left"
|
Loading…
Reference in a new issue