diff options
-rwxr-xr-x | lsd | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |