Last active
October 28, 2020 14:01
-
-
Save mob-sakai/a486cba9c28573b8c34756624a1fefb8 to your computer and use it in GitHub Desktop.
This file contains 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 -ex | |
while getopts "e" OPT | |
do | |
case $OPT in | |
e) EDITOR_ONLY="true";; | |
\?) echo "[ERROR] Undefined options.";; | |
esac | |
done | |
if [ "$EDITOR_ONLY" = "true" ]; then | |
echo "EDITOR_ONLY!" | |
fi | |
echo -e ">> Start $1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment