about summary refs log tree commit diff stats
path: root/hm/soispha/conf/lf/commands/scripts/clear_trash
blob: 3811b289e14a7f952a8e5a8a123a75e016d8a226 (plain) (blame)
1
2
3
4
5
6
7
8
#! /usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.0.9" . %SHELL_LIBRARY_PATH

# could also use --force, for instand removal
trash list | fzf --multi | awk '{print $NF}' | xargs trash empty --match=exact
# vim: ft=sh