Bash Script Structure: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
==Bash for Chorke== | ==Bash for Chorke== | ||
#bash settings/initialization | |||
# bash settings/initialization | |||
BASH_HOME=$HOME/.chorke/var/bash | BASH_HOME=$HOME/.chorke/var/bash | ||
BASH_PATH=$BASH_HOME/java/org/init | BASH_PATH=$BASH_HOME/java/org/init | ||
BASH_SITE=http://cdn.chorke.org/bash | BASH_SITE=http://cdn.chorke.org/bash | ||
#bash script download/copy | # bash script download/copy | ||
curl $BASH_SITE/java/init>$BASH_PATH/init | curl $BASH_SITE/java/init>$BASH_PATH/init | ||
curl $BASH_SITE/java/make>$BASH_PATH/make | curl $BASH_SITE/java/make>$BASH_PATH/make | ||
Line 35: | Line 36: | ||
==Bash for Shahed== | ==Bash for Shahed== | ||
# bash settings/initialization | |||
BASH_HOME=$HOME/.shahed/var/bash | BASH_HOME=$HOME/.shahed/var/bash | ||
BASH_PATH=$BASH_HOME/php/biz/bash | BASH_PATH=$BASH_HOME/php/biz/bash | ||
BASH_SITE=http://cdn.chorke.org/bash | |||
# bash script download/copy | |||
curl $BASH_SITE/php/init>$BASH_PATH/init | |||
curl $BASH_SITE/php/make>$BASH_PATH/make | |||
curl $BASH_SITE/php/make>$BASH_PATH/make/option | |||
curl $BASH_SITE/php/pull>$BASH_PATH/pull | |||
curl $BASH_SITE/php/push>$BASH_PATH/push | |||
curl $BASH_SITE/php/sync>$BASH_PATH/sync | |||
~/.shahed/ | ~/.shahed/ |
Revision as of 11:45, 9 January 2018
Bash for Chorke
# bash settings/initialization BASH_HOME=$HOME/.chorke/var/bash BASH_PATH=$BASH_HOME/java/org/init BASH_SITE=http://cdn.chorke.org/bash
# bash script download/copy curl $BASH_SITE/java/init>$BASH_PATH/init curl $BASH_SITE/java/make>$BASH_PATH/make curl $BASH_SITE/java/make>$BASH_PATH/make/option curl $BASH_SITE/java/pull>$BASH_PATH/pull curl $BASH_SITE/java/push>$BASH_PATH/push curl $BASH_SITE/java/sync>$BASH_PATH/sync
~/.chorke/ ├─ tmp/ └─ var/ └─ bash/ └─ java/ ├─ com/ │ ├─ ebis/ │ └─ ehis/ └─ org/ ├─ amqp/ ├─ core/ ├─ ecma/ └─ init/ ├─ init ├─ make ├─ make/all ├─ pull ├─ push └─ sync
Bash for Shahed
# bash settings/initialization BASH_HOME=$HOME/.shahed/var/bash BASH_PATH=$BASH_HOME/php/biz/bash BASH_SITE=http://cdn.chorke.org/bash
# bash script download/copy curl $BASH_SITE/php/init>$BASH_PATH/init curl $BASH_SITE/php/make>$BASH_PATH/make curl $BASH_SITE/php/make>$BASH_PATH/make/option curl $BASH_SITE/php/pull>$BASH_PATH/pull curl $BASH_SITE/php/push>$BASH_PATH/push curl $BASH_SITE/php/sync>$BASH_PATH/sync
~/.shahed/ ├─ tmp/ └─ var/ └─ bash/ └─ php/ └─ biz/ ├─ site/ └─ bash/ ├─ init ├─ make ├─ make/all ├─ pull ├─ push └─ sync