ターミナル経由でファイルをゴミ箱に移動するコマンド


117

端末で発行できるコマンドがあるかどうかを知りたいので、古典的rmにファイルを削除()せず、代わりにゴミ箱に移動します(つまり、Nautilusのゴミ箱への移動動作)。

そのようなコマンドがある場合、それが何であるかを知りたいと思います。



2
また、こちらの優れたリソース:webupd8.org/2010/02/make-rm-move-files-to-trash-instead-of.html
Rinzwind

回答:


105

Ubuntuにデフォルトでインストールされるgvfs-trashパッケージのコマンドを使用できますgvfs-bin

ファイルをゴミ箱に移動:

gvfs-trash filename

ゴミ箱の内容を見る:

gvfs-ls trash://

ごみ箱を空にする:

gvfs-trash --empty

私のgvfs-questionもご覧ください。
Pandya

これは私にとって最も簡単な答えです。ありがとうございました。
テオディC.セギン

10
それによるとman gvfs-trash、廃止予定であるためgio trash、参照してくださいman gio
pbhj

67

インストールゴミ-CLIをtrash-cliをインストールする -sudo apt-get install trash-cli

ファイルをゴミ箱に入れるには: trash file1 file2

ごみ箱内のファイルをリストします。 trash-list

空のゴミ: trash-empty


1
その(Ubuntu関連の)ツールは、ゴミ箱の仕様を示しています。しかし...、広く採用されている方法がわからない、かなり面白い
フランクNocke

インストール後、コマンドを実行してエラーを取得します File "/usr/bin/trash-list", line 4, in <module> ImportError: No module named 'trashcli'
ダニエル

25

2017年の時点では、gvfs-trash非推奨のようです。

$ touch test
$ gvfs-trash test
This tool has been deprecated, use 'gio trash' instead.
See 'gio help trash' for more info.

あなたは使用する必要がありますgio具体的には、

gio trash

推奨される方法です。


2
gvfs-trash廃止予定のソースをリンクしてもらえますgioか?
メレビウス

1
私は残念ながらリンクを提供することはできませんが、これは、私はKubuntuの17.10上のgvfs-ゴミを使用しようとして得るものです:pastebin.com/HA4a1pbs
オイゲン・Tverdokhleb

1
あなたの答えにここに例を貼り付けることができます、それはシステムバージョン番号と一緒に私にとって十分でしょう。私は16.04 LTSを使用しgvfs-trashていますが、ここでの唯一のオプションです。
メレビウス

このツールには、他にも多くの便利な機能があります。私はinfoコマンドが好きです。便利そうです。
ラフィカッチャドゥリアン

4

@Radu Rădeanu回答を更新しています。Ubuntuがgio代わりに使用するように私に言っているので...

したがって、ゴミ箱some_file(またはフォルダ)を使用するには

gio trash some_file

ごみ箱ダイビングに行くには

gio list trash://

ゴミ箱を空にする

gio trash --empty

3

ローテクの方法が一番好きです。次のように.Tr入力して、ホームディレクトリにフォルダーを作成しました。

mkdir ~/.Tr

rmファイルを削除する代わりに、次のように~/.Tr入力してこれらのファイルをディレクトリに移動します。

mv fileName ~/.Tr

Ubuntuの知識レベルがかなり低く、自分が何になるか心配しているので、これはシステムのフォルダーをいじらないという私の場合の追加の利点で、あなたが望まないと思うファイルへのアクセスを維持する効果的で簡単な方法です私がシステムのことを台無しにしたときに台無しに。低レベルでもある場合は、「。」ディレクトリ名に隠されたディレクトリになります。


3

以前の回答では、コマンドについて言及していますがgio trash、それは行く限り問題ありません。ただし、サーバーマシンでは、ゴミ箱に相当するものはありません。仕事をするBashスクリプトを書きました。(Ubuntu)デスクトップマシンでは、を使用しgio trashます。(alias tt='move-to-trash'エイリアス定義ファイルに追加しましたtt。「ゴミ箱へ」のニーモニックです。)

#!/bin/bash
# move-to-trash

# Teemu Leisti 2018-07-08

# This script moves the files given as arguments to the trash directory, if they
# are not already there. It works both on (Ubuntu) desktop and server hosts.
#
# The script is intended as a command-line equivalent of deleting a file from a
# graphical file manager, which, in the usual case, moves the deleted file(s) to
# a built-in trash directory. On server hosts, the analogy is not perfect, as
# the script does not offer the functionalities of restoring a trashed file to
# its original location nor of emptying the trash directory; rather, it is an
# alternative to the 'rm' command that offers the user the peace of mind that
# they can still undo an unintended deletion before they empty the trash
# directory.
#
# To determine whether it's running on a desktop host, the script tests for the
# existence of directory ~/.local/share/Trash. In case it is, the script relies
# on the 'gio trash' command.
#
# When not running on a desktop host, there is no built-in trash directory, so
# the first invocation of the script creates one: ~/.Trash/. It will not
# overwrite an existing file in that directory; instead, in case a file given as
# an argument already exists in the custom trash directory, the script first
# appends a timestamp to the filename, with millisecond resolution, such that no
# existing file will be overwritten.
#
# The script will not choke on a nonexistent file. It outputs the final
# disposition of each argument: does not exist, was already in trash, or was
# moved to the trash.


# Exit on using an uninitialized variable, and on a command returning an error.
# (The latter setting necessitates appending " || true" to those arithmetic
# calculations that can result in a value of 0, lest bash interpret the result
# as signalling an error.)
set -eu

is_desktop=0

if [[ -d ~/.local/share/Trash ]] ; then
    is_desktop=1
    trash_dir_abspath=$(realpath ~/.local/share/Trash)
else
    trash_dir_abspath=$(realpath ~/.Trash)
    if [[ -e $trash_dir_abspath ]] ; then
        if [[ ! -d $trash_dir_abspath ]] ; then
            echo "The file $trash_dir_abspath exists, but is not a directory. Exiting."
            exit 1
        fi
    else
        mkdir $trash_dir_abspath
        echo "Created directory $trash_dir_abspath"
    fi
fi

for file in "$@" ; do
    file_abspath=$(realpath -- "$file")
    file_basename=$( basename -- "$file_abspath" )
    if [[ ! -e $file_abspath ]] ; then
        echo "does not exist:   $file_abspath"
    elif [[ "$file_abspath" == "$trash_dir_abspath"* ]] ; then
        echo "already in trash: $file_abspath"
    else
        if (( is_desktop == 1 )) ; then
            gio trash "$file_abspath" || true
        else
            move_to_abspath="$trash_dir_abspath/$file_basename"
            while [[ -e "$move_to_abspath" ]] ; do
                move_to_abspath="$trash_dir_abspath/$file_basename-"$(date '+%Y-%m-%d-at-%H:%M:%S.%3N')
            done
            # While we're reasonably sure that the file at $move_to_abspath does not exist, we shall
            # use the '-f' (force) flag in the 'mv' command anyway, to be sure that moving the file
            # to the trash directory is successful even in the extremely unlikely case that due to a
            # run condition, some other thread has created the file $move_to_abspath after the
            # execution of the while test above.
            /bin/mv -f "$file_abspath" "$move_to_abspath"
        fi
        echo "moved to trash:   $file_abspath"
    fi
done


0

KDE 4.14.8では、次のコマンドを使用してファイルをゴミ箱に移動しました(まるでDolphinで削除されたかのように)。

kioclient move path_to_file_or_directory_to_be_removed trash:/

付録:コマンドについて見つけた

    ktrash --help
...
    Note: to move files to the trash, do not use ktrash, but "kioclient move 'url' trash:/"
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.