find by size.

This commit is contained in:
Ivan Malison 2015-02-21 21:04:20 -08:00
parent 826ddbbc60
commit 9126d7db6e

View File

@ -350,3 +350,8 @@ function android_sdk_directory {
function pkill_zsh {
ps aux | grep "$1" | grep -v grep | get_cols 2 | xargs kill -9
}
function find_by_size {
find . -type f -size +$1
}