Skip to content

Instantly share code, notes, and snippets.

@KenshoFujisaki
Created March 19, 2015 05:24
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 KenshoFujisaki/02937e88609f96f63753 to your computer and use it in GitHub Desktop.
Save KenshoFujisaki/02937e88609f96f63753 to your computer and use it in GitHub Desktop.
vimのスワップファイルを除去します。
# remove
$ find . -name '.*.sw*' -exec rm {} \;
# remove interactive
$ find . -name '.*.sw*' -ok rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment