Added projects, updated names

This commit is contained in:
2021-04-09 02:15:18 -05:00
parent 1180e3171f
commit 1f23cb73d1
101 changed files with 513 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#!/bin/bash
main()
{
readarray -t pids < pids
programGuiID=${pids[0]}
serverID=${pids[1]}
kill $programGuiID $serverID ;
echo "" > ./pids
rm -rf \
../tmp/*tmp* \
../tmp/*Show* \
../tmp/*img* \
../tmp/*titles* \
../tmp/*media* \
../tmp/aGrpIds \
../tmp/aImgList \
../tmp/alphaListing \
../tmp/aTitles \
../tmp/preaImgList \
../tmp/preaTitles
}
main