40
37

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

vimのスワップファイルを一掃する

40
Posted at

検出

findコマンドで検出する。

find . -name '.*.sw*'

削除

んでもって削除。

find . -name '.*.sw*'|xargs rm

参考

vimのスワップファイルを掃除する方法

40
37
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
40
37

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?