agent: |
BPy5UwEOVy8XUudKs38xCheck if Command is Installed
Check if Command is Installed
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
- Objective: Verify that the command is installed on the system.
- Commands:
- Debian/Ubuntu: dpkg -l | grep command_name
- Red Hat/CentOS/Fedora: rpm -q command_name
- Generic: command -v command_name || echo "Command not found"
inputs
outputs
dpkg -l | grep <command_name>
copied