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

6
qs.sh Normal file
View File

@@ -0,0 +1,6 @@
if [[ -z ${*} ]]
then echo you have to supply a quick name.
else grep -v "^${*} " ~/.qcdrc > /tmp/qcd.$$
mv /tmp/qcd.$$ ~/.qcdrc
echo -e "${*}\\t${PWD}" >> ~/.qcdrc;
fi