blob: bb164a1e6db48e666d5c200838103a8c57634611 (
plain) (
blame)
1
2
3
4
5
6
7
|
#! /usr/bin/env dash
# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="1.10.2" . %SHELL_LIBRARY_PATH
trash list | fzf --multi | awk '{print $NF}' | xargs trash restore --match=exact
# vim: ft=sh
|