Skip to content

Instantly share code, notes, and snippets.

@skkzsh
Last active August 20, 2018 21:15
Show Gist options
  • Select an option

  • Save skkzsh/ff9d6382e74fa927da74c2830808393d to your computer and use it in GitHub Desktop.

Select an option

Save skkzsh/ff9d6382e74fa927da74c2830808393d to your computer and use it in GitHub Desktop.
inode番号指定でのファイル削除 (ファイル名が文字化けしていて、単純にrmで消せない場合に使用)
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