added content and structured others
This commit is contained in:
17
src/Shell/Utils/a-z_folder_maker.sh
Executable file
17
src/Shell/Utils/a-z_folder_maker.sh
Executable 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 $@;
|
||||
Reference in New Issue
Block a user