aozhiwei 56b7845137 1
2022-05-12 09:06:06 +08:00

9 lines
147 B
Bash
Executable File

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