> I can't figure out from the chmod man page how to do a chmod -x > recursively on all files and not on directories. Anybody knows how to do > that? find . -type f -exec chmod -x {} \; I discovered "find" a few weeks ago and I'm still learning to use it, but I think that line should do the trick. Greets. -- Joaquín