large-files: allow specifying another file size
This commit is contained in:
parent
e078fee541
commit
1c52286616
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
# Find large files on this host
|
||||
|
||||
LARGE='+100M'
|
||||
LARGE=${1:-100M}
|
||||
WHERE=`mount -t ext2,ext3,ext4,btrfs,ntfs,reiserfs,xfs,zfs | awk '{ print $3 }'`
|
||||
IGNORE='^(/var/lib/rpm/Packages|/home/.*/.btsync/.*\.db)$'
|
||||
|
||||
sudo find $WHERE -xdev -size $LARGE | grep --line-buffered -Ev "$IGNORE"
|
||||
sudo find $WHERE -xdev -size +$LARGE | grep --line-buffered -Ev "$IGNORE"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue