Skip to content

Instantly share code, notes, and snippets.

@dufferzafar
Created January 9, 2015 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dufferzafar/852dfbbe8b6764a3d24d to your computer and use it in GitHub Desktop.
Save dufferzafar/852dfbbe8b6764a3d24d to your computer and use it in GitHub Desktop.
Delete a file with special characters in its name.
# First find out the inode by
# ls -il .
# Then delete file
sudo find . -inum $1 -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment