Browse snippets grouped by topic.
@linuxgnuยท1d ago
# Find the 20 largest files under the current directory find . -type f -printf '%s\t%p\n' 2>/dev/null \ | sort -nr \ | head -n 20 \