Bash scripting and system resource monitoring
silent_script - Execute bash scripts with arguments, env vars, and timeoutsilent_resources - Monitor GPU/RAM/CPU usage with detailed process info{
"name": "silent_script",
"arguments": {
"script": "#!/bin/bash\necho 'Hello World'\nls -la",
"timeout": 30
}
}
{
"name": "silent_resources",
"arguments": {
"detailed": true,
"process_filter": "rust"
}
}
This monitors system resources and filters processes by name, providing detailed information about CPU, RAM, and GPU usage.
{
"name": "silent_script",
"arguments": {
"script": "#!/bin/bash\nfor i in \"$@\"; do echo \"Arg: $i\"; done",
"args": ["arg1", "arg2", "arg3"],
"env": {
"MY_VAR": "custom_value"
},
"timeout": 10
}
}