From 6093d0bc24fb4a89873b6f68ce3f3ad1958bdde0 Mon Sep 17 00:00:00 2001 From: Riley Beckett Date: Sat, 18 Oct 2025 13:58:08 -0400 Subject: add verbose --- swenu-path.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 swenu-path.sh (limited to 'swenu-path.sh') diff --git a/swenu-path.sh b/swenu-path.sh new file mode 100755 index 0000000..a720d5c --- /dev/null +++ b/swenu-path.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +IFS=: +for dir in $PATH; do + [ -e ${dir} ] && find ${dir} -executable -printf '%f\n' +done | sort -u -- cgit v1.2.3