From: Silvio Rhatto Date: Sun, 27 May 2018 21:01:01 +0000 (-0300) Subject: LSD: restrict listing to the repo X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e74550e02b4ecfb1d1e15acdfce99007dca6babd;p=rhatto%2Fapps.git LSD: restrict listing to the repo --- 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