From 9126d7db6e24b29621c7d4d1d94f03f13f27be86 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 21 Feb 2015 21:04:20 -0800 Subject: [PATCH] find by size. --- dotfiles/lib/shellenv/functions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dotfiles/lib/shellenv/functions.sh b/dotfiles/lib/shellenv/functions.sh index 16222950..38e7a5a3 100644 --- a/dotfiles/lib/shellenv/functions.sh +++ b/dotfiles/lib/shellenv/functions.sh @@ -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 +}