2 lines
65 B
Bash
Executable file
2 lines
65 B
Bash
Executable file
#!/bin/sh
|
|
while true; do curl $1 2>/dev/null;sleep ${2:-1}; done
|