Startup a service that depends on amino
./bin/myservice --conf=/path/to/my/conf
Startup a service using the default conf path
./bin/myservice
| #!/bin/bash | |
| # Generates changelog day by day | |
| echo "CHANGELOG" | |
| echo "=====================================" | |
| git log --no-merges --format="%cd" --date=short $1 | sort -u -r | while read DATE ; do | |
| echo | |
| echo $DATE | |
| echo "---------------------------------" | |
| git log --no-merges --format=" * %s%+b" --since="$DATE 00:00:00" --until="$DATE 24:00:00" | sed -e '/ \* /!s/^/ /g' | |
| done |
Startup a service that depends on amino
./bin/myservice --conf=/path/to/my/conf
Startup a service using the default conf path
./bin/myservice