Linux中如何刪除名為-a及\a的檔及特殊檔

來源:互聯網
上載者:User
關鍵字 刪除 Linux 特殊檔

Linux中如何刪除名為-a及\a的檔及特殊檔?

a 刪除名為 -a 的檔

1 rm ./-a
2 rm -- -a,--告訴rm這是一個選項,具體參見getopt
3 ls -i 列出inum,然後用find . -inum inum_of_thisfile -exec rm '{}' \;

b 刪除名為 \a 的檔

rm \\a

c 刪除名字帶的 / 和‘ \0 ' 檔

這些字元是正常檔案系統所不允許的字元,但可能在檔案名中產生,如unix下的nfs檔案系統在Mac系統上使用

1 把nfs檔案系統在掛到不過濾'/'字元的系統下,刪除含特殊檔案名的檔;

2 將錯誤檔案名的目錄其它檔移走,ls -id 顯示含該檔目錄的inum,umount 檔案系統,

clri清除該目錄的inum,fsck,mount,檢查lost+found目錄,將其中的檔更名。

另外,可以通過windows ftp過去刪除任何檔案名的檔

d 刪除名字帶不可見字元的檔

列出檔案名並轉儲到檔:ls -l > del.sh

然後編輯檔的內容加入rm命令使其內容成為刪除上述檔的格式:

vi del.sh
rm -rf *******

執行sh del.sh

e HTTP://www.aliyun.com/zixun/aggregation/18137.html">刪除檔案大小為零的檔

1 rm -i `find ./ -size 0`
2 find ./ -size 0 -exec rm {} \;
3 find ./ -size 0 | xargs rm -f &
4 for file in * #自己定義需要刪除的檔案類型
do
if [ ! -s ${file} ]
then
rm ${file}
echo "rm $file Success!"
fi
done

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.