how to recursively remove all files in directory above certain size

Feb 08, 2016 12:03

find /opt/TestResults -type f -size +1G | xargs sudo rm -rf

bash, programming

Previous post Next post
Up