in reply to Re: disabling unnecessary perl modules
in thread disabling unnecessary perl modules
Another method that might come handy, is to check access times.
$ touch STAMP $ mount /usr -o remount,strictatime $ sh my-test-foo.sh $ find /usr -type f ! -anewer STAMP | xargs echo rm
|
|---|