檔名如下:
8_140_3g:~ #ll
-rw-r--r-- 1 admin root 0 2011-11-29 23:18:41 --header=host: 172.16.8.166
直接用rm,刪除失敗
8_140_3g:~ #rm --header\=host\:\ 172.16.8.166
rm: unrecognized option `--header=host: 172.16.8.166'
try `rm ./'--header=host: 172.16.8.166'' to remove the file `--header=host: 172.16.8.166'.
try `rm --help' for more information.
8_140_3g:~ #
用for迴圈,刪除失敗:
8_140_3g:~ #for f in `ls \-*`;do echo $f;done
/bin/ls: unrecognized option `--header=host: 172.16.8.166'
try `/bin/ls --help' for more information.
8_140_3g:~ #
用ls顯示,失敗:
8_140_3g:~ #ll '--header=host: 172.16.8.166'
/bin/ls: unrecognized option `--header=host: 172.16.8.166'
try `/bin/ls --help' for more information.
8_140_3g:~ #
用find命令,顯示成功:
8_140_3g:~ #find . -name "*host*"
./--header=host: 172.16.8.166
8_140_3g:~ #
用find命令,刪除成功:
8_140_3g:~ #find . -name "*host*" -exec rm {} \;
8_140_3g:~ #
使用find刪除特殊大小的檔案
刪除特殊大小的檔案 1.根據檔案的時間,建立人,大小等特徵,用 find 命令找到檔案 find maxdepth 1 type f size 72019c size 72021c 解釋 maxdepth 1 搜尋深度為 1 type f 搜尋普通檔案 size 72019c 檔案大於 72019b...
如何刪除 200, 343特殊字元
在不同系統之間 拷貝時,有時會有特殊字元問題。例如在網上看到別人的 不錯,拷貝到linx下儲存。編譯發現報錯 singleton.h 25 2 error stray 200 in program singleton.h 25 2 error stray 343 in program 檔案有很多行,...
C 之 檢驗是否包含特殊字元
檢驗是否包含特殊字元 bool checktextchineseornumberorletter string str bool res true if badnum 0 return res int main else getchar return 0 其中判斷是否為中文的 if pstr i 0...