標籤:linux 檔案格式
第一步:
編輯一下文本,大家可以對指令碼按照自己的要求更改:
#!/bin/bash
#chmodall text file to read and write;
find~ -name "*.doc*" -exec chmod 644 -R {} \;
find~ -name "*.xls*" -exec chmod 644 -R {} \;
find~ -name "*.ppt*" -exec chmod 644 -R {} \;
find~ -name "*.pdf" -exec chmod 644 -R {} \;
find~ -name "*.txt" -exec chmod 644 -R {} \;
find~ -name "*.hlp" -exec chmod 644 -R {} \;
find~ -name "*.wps" -exec chmod 644 -R {} \;
find~ -name "*.rtf" -exec chmod 644 -R {} \;
find~ -name "*.htm*" -exec chmod 644 -R {} \;
#chmodall picture to read and wirte;
find~ -name "*.png" -exec chmod 644 -R {} \;
find~ -name "*.jpg" -exec chmod 644 -R {} \;
find~ -name "*.bmp" -exec chmod 644 -R {} \;
find~ -name "*.jpeg" -exec chmod 644 -R {} \;
find~ -name "*.gif" -exec chmod 644 -R {} \;
find~ -name "*.dwg" -exec chmod 644 -R {} \;
find~ -name "*.pic" -exec chmod 644 -R {} \;
find~ -name "*.tif" -exec chmod 644 -R {} \;
#chmodall compress to read&write:
find~ -name "*.rar" -exec chmod 644 -R {} \;
find~ -name "*.zip" -exec chmod 644 -R {} \;
find~ -name "*.arj" -exec chmod 644 -R {} \;
find~ -name "*.gz" -exec chmod 644 -R {} \;
find~ -name "*.bz*" -exec chmod 644 -R {} \;
#chmodall video to read&write:
find~ -name "*.avi" -exec chmod 644 -R {} \;
find~ -name "*.mp3" -exec chmod 644 -R {} \;
find~ -name "*.wav" -exec chmod 644 -R {} \;
find~ -name "*.mp4" -exec chmod 644 -R {} \;
find~ -name "*.swf" -exec chmod 644 -R {} \;
#chmodall source code to R&W;
find~ -name "*.h" -exec chmod 644 -R {} \;
find~ -name "*.c" -exec chmod 644 -R {} \;
find~ -name "*.java" -exec chmod 644 -R {} \;
#到此,指令碼結束
第二步:儲存指令檔為chmymod
第三步:修改指令碼的許可權:chmod644 chmymod
並將指令碼移動到/bin下!
到此,就結束了。大家只要在命令列輸入chmymod就可以看到效果了