From e74550e02b4ecfb1d1e15acdfce99007dca6babd Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 27 May 2018 18:01:01 -0300 Subject: LSD: restrict listing to the repo --- lsd | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lsd b/lsd index 668fca3..bddfafc 100755 --- a/lsd +++ b/lsd @@ -4,12 +4,15 @@ # # Parameters +DIRNAME="`dirname $0`" BASENAME="`basename $0`" ACTION="$1" # List apps function lsd_list { #find -maxdepth 2 -iname 'readme*' -exec head -1 {} \; + ( + cd $DIRNAME find -maxdepth 2 -iname 'readme*' | while read readme; do if [ "$readme" == "./README.md" ]; then continue @@ -18,6 +21,7 @@ function lsd_list { echo -n "`dirname $readme | sed -e 's/^.\///'`: " head -1 $readme done + ) } # Dispatch -- cgit v1.2.3