network-tools.json•696 B
[
{
"request": {
"main_sh": "ping -c 1 google.com"
},
"response": {
"text": "google.com ping statistics"
}
},
{
"request": {
"main_sh": "nslookup google.com | head -n 5"
},
"response": {
"text": "Server:"
}
},
{
"request": {
"main_sh": "curl -s https://httpbin.org/get | head -n 5"
},
"response": {
"text": "\"args\":"
}
},
{
"request": {
"main_sh": "ifconfig -a | head -n 3"
},
"response": {
"text": "eth0: flags="
}
},
{
"request": {
"main_sh": "non-existent-command"
},
"response": {
"text": "not found",
"isError": true
}
}
]