Bash Script Structure
Jump to navigation
Jump to search
Bash for Chorke
# build version
VERSION=9.99.99
# locale bash script path setting
BASH_HOME=$HOME/.chorke/var/bash
BASH_PATH=$BASH_HOME/java/org/init
# remote bash script path setting
BASH_SITE=http://cdn.chorke.org/bash
BASH_BASE=$BASH_SITE/java/init
# remote bash scripts download to locale
for b in init make pull push sync;do\
curl -L "$BASH_BASE/$b/$VERSION">"$BASH_PATH/$VERSION/$b";\
done
Tree for Chorke
~/.chorke/var/bash/java/ └─ org/ ├─ amqp/ └─ init/ ├─ 0.00.00/ ├─ 0.00.01/ ├─ 9.99.98/ └─ 9.99.99/ ├─ init ├─ make ├─ pull ├─ push └─ sync
Bash for Shahed
# build version
VERSION=9.99.99
# locale bash script path setting
BASH_HOME=$HOME/.shahed/var/bash
BASH_PATH=$BASH_HOME/php/biz/site
# remote bash script path setting
BASH_SITE=http://cdn.shahed.biz/bash
BASH_BASE=$BASH_SITE/php/site
# remote bash scripts download to locale
for b in init make pull push sync;do\
curl -L "$BASH_BASE/$b/$VERSION">"$BASH_PATH/$VERSION/$b";\
done
Tree for Shahed
~/.shahed/var/bash/php/ └─ biz/ ├─ bash/ └─ site/ ├─ 0.00.00/ ├─ 0.00.01/ ├─ 9.99.98/ └─ 9.99.99/ ├─ init ├─ make ├─ pull ├─ push └─ sync