Very simple but useful command to find files over e.g. 1000kb and output to a log file:
find ./ -type f -size +1000k >> size.log
Very simple but useful command to find files over e.g. 1000kb and output to a log file:
find ./ -type f -size +1000k >> size.log
Leave a Comment