{}Snippt
ExploreTags
New

Tags

Browse snippets grouped by topic.

react3utils3hooks2typescript2bash1database1go1http1linux1python1sql1

#linux

Find the 20 largest files

@linuxgnuยท1d ago

Shell
# 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 \
8701#bash #linux
{}SnipptShare code, instantly.
ExploreTagsNew snippetSearch