Find big files

[download big]

#!/bin/sh
# find the biggest files under the current directory.

find . -type f -printf "%k %p\n" | sort -rn | head

Posted by pierre on 29 March 2008 in bash

Leave a Reply

*