goo blog サービス終了のお知らせ 
goo

bash 消せないファイルを消す

消せないファイルを消す

ls -qi

で、対象ファイルのinodeを取得

find . -inum inodeの番号 -exec rm -f {} \;
コメント ( 0 )