web-dev-qa-db-fra.com

Commande pour déplacer un fichier dans la corbeille via un terminal

Je voudrais savoir s’il existe une commande que je peux émettre dans un terminal afin que je ne supprime pas classiquement (rm) le fichier, mais que je le déplace plutôt dans la corbeille (c’est-à-dire le comportement Nautilus Déplacer dans la corbeille).

Au cas où il y aurait une telle commande, j'aimerais aussi savoir ce que c'est.

117
Rasmus

Vous pouvez utiliser la commande gvfs-trash du paquetage gvfs-bin qui est installé par défaut dans Ubuntu.

Déplacer le fichier dans la corbeille:

gvfs-trash filename

Voir le contenu de la corbeille:

gvfs-ls trash://

Vider la poubelle:

gvfs-trash --empty
104
Radu Rădeanu

Installer trash-cli Install trash-cli - Sudo apt-get install trash-cli

Mettez les fichiers dans la corbeille avec: trash file1 file2

Liste les fichiers dans la corbeille: trash-list

Vider la corbeille avec: trash-empty

67
user55822

À partir de 2017, gvfs-trash semble être obsolète.

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

Vous devez utiliser gio, en particulier

gio trash

est la manière recommandée.

25
Eugen Tverdokhleb

J'aime les moyens low tech le meilleur. J'ai créé un dossier .Tr dans mon répertoire personnel en tapant:

mkdir ~/.Tr

et au lieu d'utiliser rm pour supprimer des fichiers, je déplace ces fichiers dans le répertoire ~/.Tr en tapant:

mv fileName ~/.Tr

C’est un moyen simple et efficace de conserver l’accès aux fichiers que vous pensez ne pas vouloir, mais qui présente également l’avantage supplémentaire de ne pas déranger les dossiers du système. En effet, mes connaissances sur Ubuntu sont relativement faibles et je me préoccupe de ce que je pourrais être. bousiller quand je déconner avec des trucs du système. Si vous êtes également de faible niveau, veuillez noter que le "." dans le nom du répertoire en fait un répertoire caché.

3
user2981989

Une réponse précédente mentionne la commande gio trash, qui est correcte dans la mesure du possible. Cependant, sur les ordinateurs du serveur, il n’existe pas d’équivalent d’un répertoire corbeille. J'ai écrit un script Bash qui fait le travail; sur les ordinateurs de bureau (Ubuntu), il utilise gio trash. (J'ai ajouté alias tt='move-to-trash' à mon fichier de définitions d'alias; ttest un code mnémonique pour "mettre à la corbeille".)

#!/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
3
Teemu Leisti

Mise à jour de @Radu Rădeanu answer. Puisque Ubuntu me dit d’utiliser plutôt gio ...

Donc, pour trash some_file (ou dossier) utiliser

gio trash some_file

Pour aller plonger dans une benne à ordures

gio list trash://

Vider la corbeille

gio trash --empty
3
Barmaley

Voici un code source libre version basée sur nodejs (si vous voulez savoir ce qui se passe sous le capot ou si vous avez besoin de cela dans un projet), cela a également support en ligne de commande (Si vous êtes heureux, si ça marche.

> trash pictures/beach.jpg
2
Frank Nocke