|
Written by tek
|
|
Tuesday, 07 June 2005 10:16 |
I have had to do this a few times now and forget everytime so here is the documentation for me to find next time.
touch a file, do your install, and then run 'find / -newer ' other than that, an -atime would do the same thing but with files that have been accessed.
-mtime would show files that have been modified.
you could also exclude various directories with something such as this.
find / -newer | grep -v -e ^/proc/ -e ^/tmp/ -e ^/dev/
|
|
Last Updated on Tuesday, 07 June 2005 10:16 |