This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| set "OptionsPath=..\..\Option" | |
| ECHO 1. AOLD Only | |
| ECHO 2. AKON Only | |
| ECHO 3. Both AOLD and AKON | |
| ECHO 4. Neither AOLD or AKON | |
| CHOICE /C 1234 /M "Enter your choice:" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Default answer for deleting or not the repository folder at the end | |
| answer="noanswer" | |
| # Parse command-line options | |
| while getopts ":yn" opt; do | |
| case $opt in | |
| y) | |
| answer="y" |