Linux一次性修改電腦的檔案的為讀寫格式

來源:互聯網
上載者:User

標籤: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就可以看到效果了


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.