Initial commit...

This commit is contained in:
2021-10-10 01:45:55 -05:00
parent 589ef9e6a2
commit 6e2f571466
97 changed files with 9772 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
find . -name "__pycache__" -exec rm -rf $1 {} \;
find . -name "*.pyc" -exec rm -rf $1 {} \;
}
main