bash: find recursively the largest file

30 May 2020

Command to find recursively the largest file:

find . -type f -printf "%s\t%p\n" | sort -n | tail -1
[ bash  ]