#!/bin/bash ### find if [ -z "$1" ]; then echo "give path as pram" exit fi du -sh $1 | sort -n -r | head -n 10
#
#HowToFindLargestTop10Files
#!/bin/bash ### find if [ -z "$1" ]; then echo "give path as pram" exit fi du -sh $1 | sort -n -r | head -n 10
#
#HowToFindLargestTop10Files