From: Michael D. Lowis Date: Tue, 29 Nov 2016 00:23:27 +0000 (-0500) Subject: Updated helper scripts X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=e1e8e789b212e35e7c42430083d1545d978157e5;p=projs%2Ftide.git Updated helper scripts --- diff --git a/xfilepick b/xfilepick index 10a91cf..9467b55 100755 --- a/xfilepick +++ b/xfilepick @@ -3,4 +3,4 @@ if [ "$#" -ne 1 ]; then echo "Usage: $0 " exit 1 fi -find $1 -type f | ./xpick +find $1 -not -path '*/\.*' -type f | ./xpick diff --git a/xtagpick b/xtagpick index a26366b..ab222f4 100755 --- a/xtagpick +++ b/xtagpick @@ -3,4 +3,4 @@ if [ "$#" -ne 1 ]; then echo "Usage: $0 " exit 1 fi -cut -f1 "$1" | uniq | ./xpick +cut -f1 "$1" | grep -v '^!' | uniq | ./xpick