$ find . -type f -print0 | xargs -0 chmod 644to chmod all files to 644, and
$ find . -type d -print0 | xargs -0 chmod 755to chmod all directories to 755. Ahhh, the joys of bash commands.
研究生们总在某个阶段脑筋就会有点不正常。Because all research students are insane at one time or another.
$ find . -type f -print0 | xargs -0 chmod 644to chmod all files to 644, and
$ find . -type d -print0 | xargs -0 chmod 755to chmod all directories to 755. Ahhh, the joys of bash commands.