30 May 2020
Command to find recursively the largest file:
find . -type f -printf "%s\t%p\n" | sort -n | tail -1
bash