From 1921a6f61cbc4f62accffaa25a3e9ff9c7a69ff5 Mon Sep 17 00:00:00 2001 From: desktop Date: Tue, 16 Jan 2024 20:28:45 +0300 Subject: [PATCH] Archive : Rm prints removed archives. --- .config/bash/module/Archive.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/bash/module/Archive.sh b/.config/bash/module/Archive.sh index 97e7fa6..cf10c0f 100644 --- a/.config/bash/module/Archive.sh +++ b/.config/bash/module/Archive.sh @@ -157,7 +157,7 @@ function archive_rm() { [[ "${targets}" = "" ]] && targets=($(_ls_archive)) process() { - rm -- "${target}" + rm -- "${target}" && echo "${target}" } _iterate_targets process ${targets[@]}