about summary refs log tree commit diff stats
path: root/modules/home.legacy/conf/lf/commands/scripts/clear_trash.sh
blob: 9052bb5f7838684ba7fd0b43618e70f10e9d721d (plain) (blame)
1
2
3
4
5
6
7
8
#! /usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.1.2" . %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