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

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