single dot (.) is your current directory and
double dot (..) is the parent directory
so giving .* includes .. also. Better method to include all the files and folders (starting with dot too) is
chmod -R user.group directory
from its parent directory. And if you want to spare the directory, revert it back with
chmod olduser.oldgroup directory
Or, standing inside the directory,
find . -exec chmod user.grop {} \; will also give the same result
HTH



LinkBack URL
About LinkBacks



Reply With Quote
for a client that did this




