0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【CLI】ファイルを削除するコマンド

0
Posted at

ChatGPTに教えてもらったコマンドのうち、自分がすぐに使えそうなものを2つ選んで共有します。

1. ゴミ箱を経由せず完全削除

rm path/to/file.txt

基本的なコマンドですが、完全削除のため注意が必要です。

2. 単純にユーザーのゴミ箱へ移動

mv "/path/to/file.txt" ~/.Trash/

こちらも基本的なコマンドですが、1の方法に比べて安全です。

3. Homebrew の trash コマンド(推奨)

brew install trash
trash "/path/to/file.txt"

一度インストールしてしまえば、trashだけでゴミ箱に移動できるので便利です。

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?