From 699ca98f42533d59ee88ea6ca6555599148f6da5 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 7 Apr 2020 00:01:42 -0700 Subject: [PATCH] Added more flexibility to `trash -l` with RS and FS vars. --- trash | 8 ++++++-- trash.1 | 7 +++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/trash b/trash index 737d6c7..c3743f6 100755 --- a/trash +++ b/trash @@ -22,6 +22,8 @@ progname="$(basename "$0")" verbose_flag= interactive_flag= force_flag= +[ -z "$FS" ] && FS='\t' +[ -z "$RS" ] && RS='\n' fail() { echo "$@" 1>&2 @@ -235,8 +237,10 @@ list_trash() { echo "Nothing in the trash!" exit fi - for f in $(ls -A "$td/files"); do - printf '%s\t%s\t%s\n' "$td/files/$f" "$(date_from_trashinfo "$td/info/$f.trashinfo")" "$(path_from_trashinfo "$td/info/$f.trashinfo")" + for f in "$td/files"/*; do + printf '%s'"$RS"'%s'"$RS"'%s'"$FS" \ + "$f" "$(date_from_trashinfo "$td/info/$(basename "$f").trashinfo")" \ + "$(path_from_trashinfo "$td/info/$(basename "$f").trashinfo")" done } diff --git a/trash.1 b/trash.1 index 9a521ed..c12f640 100644 --- a/trash.1 +++ b/trash.1 @@ -61,9 +61,12 @@ Empty all files from the trash. .B \-l .B \--list -List all files in the trash. +List all files in the trash. The format is: \fB\fR, \fB\fR, \fB\fR. Fields are separated by the environment +variable \fIFS\fR (default: tab) and records are separated by the environment +variable \fIRS\fR (default: newline). -.B files... +.I files... The files to send to the trash. .SH EXAMPLES