12
11

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.

rmtrashのすすめ〜誤削除を防止する〜

Last updated at Posted at 2017-01-31

iOSエンジニアに転職して5週目に突入しました。
前職はWindowsのアプリエンジニアでCUIを使う機会はほとんどありませんでしたが、
今はTerminalバリバリ使ってます。

ただ、Mac初心者が気をつけなければならないのはrmコマンドです。
rmコマンドで削除されたファイルは、ゴミ箱ではなく消えてしまいます。
なので、うっかり誤削除してしまっても、もとに戻すことができません・・・

こんなときにも慌てないように、rmtrashをおすすめします。

##rmtrashとは
ファイルを削除するのではなく、ゴミ箱に移すコマンドです。

##インストール手順

###1. homebrewでrmtrashインストール

$ brew install rmtrash

###2. aliasの設定
インストールが無事終われば、.bashrcにaliasを設定します。

$ vim ~/.bashrc

aliasを追加して、rmの代わりに使えるようにします。

alias rm='rmtrash'

設定を読み込みます。

$ source ~/.bashrc

##動作確認

$ ls
sample.txt
$ rm sample.txt
スクリーンショット 2017-01-31 14.03.08.png

ゴミ箱に移動します。

ディレクトリの削除も可能です。

$ ls rmtrash_test
test.txt
$ rm rmtrash_test
スクリーンショット 2017-01-31 14.06.27.png

###参考にした記事

12
11
2

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
12
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?