<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
#!/bin/bash | |
# sudo ./mysql-db-create.sh dbname dbuser password | |
# Functions | |
ok() { echo -e '\e[32m'$1'\e[m'; } # Green | |
EXPECTED_ARGS=3 | |
E_BADARGS=65 | |
MYSQL=`which mysql` |
#!/bin/bash | |
## Use : ss command | |
## variable for change : | |
## | |
##---------- | |
Timetemp='%H%M' | |
Time=$(date +"${Timetemp}") | |
Date=$(date +"%y%m%d") | |
Yest=$(date --date="1 day ago" +"%y%m%d") | |
#Day=$(date +"%a") |