Last active
August 20, 2018 21:15
-
-
Save skkzsh/ff9d6382e74fa927da74c2830808393d to your computer and use it in GitHub Desktop.
inode番号指定でのファイル削除 (ファイル名が文字化けしていて、単純にrmで消せない場合に使用)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ls -i | awk '{print $1}' | xargs -n1 find -inum | xargs rm | |
| ls -i | awk '{print $1}' | xargs -n1 find -delete -inum | |
| # 動作確認したい場合 | |
| ls -i | awk '{print $1}' | xargs -n1 find -inum | xargs -n1 -p rm | |
| # ls -i | awk '{print $1}' | xargs -n1 -p find -delete -inum |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment