added content and structured others

This commit is contained in:
2021-02-21 00:36:31 -06:00
parent 06ca6a91ae
commit 8cfd143c93
58 changed files with 1865 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/bash
# . CONFIG.sh
# 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() {
SCRIPTPATH="$( cd "$(dirname "")" >/dev/null 2>&1 ; pwd -P )"
cd "${SCRIPTPATH}"
echo "Working Dir: " $(pwd)
mkdir a b c d e f g h i j k l m n o p q r s t u v w x y z
}
main $@;