From 14936a058f4f1ca5b1ef2231cc48d64faa1b1f66 Mon Sep 17 00:00:00 2001 From: bornwitbugs <40208858+bornwitbugs@users.noreply.github.com> Date: Mon, 1 Jun 2020 02:03:44 +0000 Subject: [PATCH] sorting the output of the list command for asthetic and functional reasons --- opm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm.sh b/opm.sh index 60b6620..cb7fb87 100755 --- a/opm.sh +++ b/opm.sh @@ -115,7 +115,7 @@ tree() show_list() { - for _f in $(cd ${OPM_STORE} && find . -name '*.sig' 2>/dev/null); do + for _f in $(cd ${OPM_STORE} && find . -name '*.sig' 2>/dev/null | sort); do if [ -z ${_BATCH} ]; then _d=${_f%/*} until [[ ${_d} == '.' ]]; do