go_pass1 moved to bin

Former-commit-id: 6be837df8518c9374c0a9de6ff717add6178d01b
Former-commit-id: b2e3e8200b9e14447b7eeedd70191e10cf4b8a58
This commit is contained in:
alain viari
2015-11-09 00:58:50 +01:00
parent 0066211385
commit c3c2be254f
7 changed files with 63 additions and 36 deletions

View File

@ -44,8 +44,15 @@ if ($?ORG_SOURCED == 0) then
setenv PROG_DIR `dirname $0` # Directory containing
setenv PROG_DIR `cd $PROG_DIR && pwd -P` # the main script file
setenv LIB_DIR "$PROG_DIR/../lib" # Directory containing
setenv LIB_DIR `cd $LIB_DIR && pwd -P` # the main script libraries
if (-d "$PROG_DIR/../lib") then
setenv LIB_DIR "$PROG_DIR/../lib" # Directory containing
setenv LIB_DIR `cd $LIB_DIR && pwd -P` # the main script libraries
else if (-d "$PROG_DIR/lib") then
setenv LIB_DIR "$PROG_DIR/lib" # alternate location
setenv LIB_DIR `cd $LIB_DIR && pwd -P` #
else
setenv LIB_DIR "$PROG_DIR" # alternate location
endif
setenv CALL_DIR `pwd -P` # Directory from where the
# main script is called
@ -121,6 +128,17 @@ alias Cat 'awk '"'"'{print "# " $0}'"'"' \!:*'
alias AssignUndef 'if ($?\!:1 == 0) set \!:1=\!:2-*'
# --------------------------------------
# VT100 color codes
# 1: normal 2: red 3: green 4: blue 5: magenta
# --------------------------------------
if ($?ORG_NO_COLOR != 0) then
set VTC = ('' '' '' '' '')
else
set VTC = ('' '' '' '' '')
endif
# --------------------------------------
# reset Stat each time
# --------------------------------------