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

  • Comment on Re^2: disabling unnecessary perl modules