find / -mtime 2 -o -ctime 2
Tag: find
find / -perm -0002 –type d -print find / -perm -0002 –type f -print
find . -name .svn –prune -o -print | xargs chown www-data:www-data #Exclude another directory (cache) find . -name .svn -or -name cache –prune -o...
# Change les droits des répertoires et sous répertoires du dossiers courant # Changer la directive -type d par -type f pour ne changer...