aozhiwei 7b8b7b88cd 1
2022-01-18 16:15:35 +08:00

9 lines
147 B
Bash
Executable File

#!/bin/bash
while true
do
read -p '> ' cmd
curl "http://127.0.0.1:7631/webapp/index.php?c=GM&a=execCmd&cmd=${cmd}" |jq .
echo ""
done