# Find large files
cmd "find files larger than 100MB"
# Find recently modified files
cmd "find files modified in the last hour"
# Count files by extension
cmd "count files by extension in current directory"
# Delete old files (use --dry first!)
cmd --dry "delete all .log files older than 30 days"
# Show recent commits
cmd "show commits from last week with author names"
# Find commits by message
cmd "find commits mentioning 'bug fix'"
# Show changed files
cmd "list files changed in the last commit"
# Undo last commit
cmd --dry "undo the last commit but keep changes"
# Process information
cmd "show top 10 processes using most CPU"
cmd "show top 10 processes using most memory"
# Disk usage
cmd "show disk usage sorted by size"
cmd "find largest directories in home folder"
# Network
cmd "show listening ports"
cmd "show active network connections"
# Search in files
cmd "find all TODO comments in rust files"
cmd "count lines of code in python files"
# File manipulation
cmd "replace tabs with spaces in all .py files"
cmd "convert all filenames to lowercase"