gio trash - Command Line Trash Program - Linux CLI
gotbletu
send your files to the garbage bin via the terminal
#gio #giotrash #fzf #trash-cli #commandline #linux #glib2
####; gio trash - restore files using fzf selection gio trash --list | column -t -s $'\t' | fzf -i -e -m -d / --with-nth 4.. --bind 'home:first,end:last,ctrl-a:select-all,ctrl-d:deselect-all,ctrl-t:toggle-all' --prompt="gio trash restore file(s): " | cut -d ' ' -f1 | while read -r line ; do gio trash --restore "$line" ; done
####; gio trash - help page gio help trash
####; gio trash - put files in trash can gio trash foo1.zip foo2.txt
####; gio trash - list files in the trash can, display in column gio trash --list | column -t -s $'\t'
####; gio trash - empty the trash can gio trash --empty
####; gio trash - restore a file gio trash --restore trash:///foo.zip ... https://www.youtube.com/watch?v=cKf7uT5dBlY
55054639 Bytes