Initial Checkin

This commit is contained in:
Joe
2019-01-04 20:01:27 -06:00
commit 527c684118
5 changed files with 26 additions and 0 deletions

10
qg.sh Normal file
View File

@@ -0,0 +1,10 @@
echoerr() {
echo "$@" 1>&2;
}
theLine=$(IFS='\t' grep "^${*} " < ~/.qcdrc)
read -r quick path <<< "$theLine"
if [[ -z $theLine ]]
then echoerr Not found: $*
else echo $path
fi