Natural language to shell command CLI tool for Linux developers.
pip install shellmSet your OpenAI API key:
export OPENAI_API_KEY='your-api-key-here'shellm "describe what you want to do"shellm "list all python files"
# Output: find . -name "*.py"
shellm "find files larger than 100MB"
# Output: find . -size +100M
shellm "show disk usage for current directory"
# Output: du -sh .
shellm "count lines of code in python files"
# Output: find . -name "*.py" -exec wc -l {} + | tail -1- Python 3.8+
- OpenAI API key
- Linux environment
MIT