59 Downloads Updated 1 month ago
Ollash is a specialized assistant for generating safe, accurate, and efficient shell commands across Linux, macOS, and Windows.
Built on vitali87/shell-commands, it is optimized for development workflows, system administration, and everyday command-line tasks.
# Find Python files modified in the last 7 days
find . -name "*.py" -type f -mtime -7
# Delete all .DS_Store files (with preview option)
find . -name ".DS_Store" -type f -delete
find . -name ".DS_Store" -type f -print
# Show disk usage sorted by size
du -sh * | sort -hr
# Create a timestamped backup
tar -czf "backup_$(date +%Y%m%d_%H%M%S).tar.gz" .
# Kill process on port 3000
lsof -ti:3000 | xargs kill -9
Licensed under the MIT License.