Comando para mover um arquivo para a Lixeira via Terminal


117

Gostaria de saber se existe um comando que possa ser emitido em um terminal para não remover ( rm) o arquivo classicamente (em vez disso), mas movê-lo para o lixo (por exemplo, comportamento do Nautilus Move to Trash).

Caso exista esse comando, eu também estaria interessado em saber o que é.


2
Dê uma olhada nesta resposta .
Peachy

Respostas:


105

Você pode usar o gvfs-trashcomando do pacote gvfs-bininstalado por padrão no Ubuntu.

Mover arquivo para a lixeira:

gvfs-trash filename

Veja o conteúdo da lixeira:

gvfs-ls trash://

Esvazie a lixeira:

gvfs-trash --empty

Visite também minha pergunta gvfs .
Pandya

Esta é a resposta mais simples para mim que funciona. Obrigado.
Teody C. Seguin

10
De acordo com man gvfs-trashele é preterido em favor de gio trash, veja man gio.
Pbhj #

67

Instale o lixo-cliInstale o lixo-cli -sudo apt-get install trash-cli

Coloque os arquivos na lixeira com: trash file1 file2

Listar arquivos no lixo: trash-list

Lixeira vazia com: trash-empty


1
Essa ferramenta (relacionada ao Ubuntu) aponta para uma especificação de lixo . Muito interessante, não sei como amplamente adotado, embora ...
Frank Nocke

Após a instalação, eu executar o comando e obter o erro: File "/usr/bin/trash-list", line 4, in <module> ImportError: No module named 'trashcli'
Daniel

25

A partir de 2017, gvfs-trashparece estar obsoleto.

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

Você deve usar gio, especificamente

gio trash

é a maneira recomendada.


2
Você poderia vincular uma fonte a gvfs-trashser preterida e o que gioé?
Melebius

1
Infelizmente, não posso fornecer um link, mas é isso que tento usar o gvfs-trash no Kubuntu 17.10: pastebin.com/HA4a1pbs #
Eugen Tverdokhleb

1
Você pode colar o exemplo aqui na sua resposta, seria suficiente para mim juntamente com o número da versão do sistema. Estou usando 16.04 LTS e gvfs-trashé a única opção aqui.
Melebius

Esta ferramenta possui vários outros recursos interessantes. Eu gosto do infocomando; parece útil.
Raffi Khatchadourian

4

Atualizando @Radu Rădeanuresposta. Como o Ubuntu está me dizendo para usar gio...

Portanto, para a lixeira some_file(ou pasta), use

gio trash some_file

Para mergulhar no lixo, use

gio list trash://

Para esvaziar o lixo

gio trash --empty

3

Eu gosto das formas de baixa tecnologia da melhor maneira. Criei uma pasta .Trno meu diretório pessoal digitando:

mkdir ~/.Tr

e, em vez de usar rmpara excluir arquivos, movo esses arquivos para o ~/.Trdiretório digitando:

mv fileName ~/.Tr

Esta é uma maneira simples e eficaz de manter o acesso aos arquivos que você acha que não deseja, com o benefício adicional de não mexer nas pastas do sistema, pois meus níveis de conhecimento do Ubuntu são razoavelmente baixos e eu me preocupo com o que eu possa ser. estragar tudo quando eu mexo com as coisas do sistema. Se você também é de nível baixo, observe que o "." no nome do diretório o torna um diretório oculto.


3

Uma resposta anterior menciona o comando gio trash, que é bom na medida em que vai. No entanto, nas máquinas servidoras, não há equivalente a um diretório de lixo. Eu escrevi um script Bash que faz o trabalho; em máquinas desktop (Ubuntu), ele usa gio trash. (Adicionei alias tt='move-to-trash'ao meu arquivo de definições de alias; tté um mnemônico para "lixeira".)

#!/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

No KDE 4.14.8, usei o seguinte comando para mover arquivos para a lixeira (como se tivessem sido removidos no Dolphin):

kioclient move path_to_file_or_directory_to_be_removed trash:/

Apêndice: Encontrei sobre o comando com

    ktrash --help
...
    Note: to move files to the trash, do not use ktrash, but "kioclient move 'url' trash:/"
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.