Production-ready snippets. Don't write it if you can steal it.
find / -type f -size +100M -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
# Run in any directory to serve files python3 -m http.server 8000
aws s3 ls | awk '{print $3}' | xargs -I {} sh -c 'echo {}; aws s3 ls --summarize --human-readable --recursive s3://{} | grep "Total Size"'
SELECT email, COUNT(*) FROM users GROUP BY email HAVING COUNT(*) > 1;
# Watch log and highlight "ERROR" tail -f /var/log/syslog | grep --line-buffered --color=auto "ERROR"