Escaping dollar signs
[clearscm.git] / rc / client_scripts / cPanel
1 #!/bin/bash
2 ################################################################################
3 #
4 # File:         $RCSfile: cPanel,v $
5 # Revision:     $Revision: 1.0 $
6 # Description:  Client specific start up for cPanel
7 # Author:       Andrew@DeFaria.com
8 # Created:      Fri Nov  8 13:50:01 PST 2013
9 # Modified:     $Date: $
10 # Language:     bash
11 #
12 # (c) Copyright 2013, ClearSCM, Inc., all rights reserved.
13 #
14 ################################################################################
15 prepend_to_path /usr/local/cpanel/build-tools
16 prepend_to_path /usr/local/cpanel/3rdparty/lib/path-bin
17 prepend_to_path /usr/local/cpanel/3rdparty/bin
18 prepend_to_path /usr/local/cpanel/bin
19 append_to_path /usr/local/sbin
20 append_to_path /usr/local/bin
21 append_to_path /usr/sbin
22 append_to_path /opt/cpanel/composer/bin
23 append_to_path /opt/cplint/bin
24 append_to_path /root/bin
25
26 # Useful aliases
27 alias makesb4='pushd $ulc; make -j4 sandbox; popd'
28 # Find code!
29 if [ -d ~/.vscode-server ]; then
30   codePath=$(dirname $(find ~/.vscode-server/bin -name code))
31   if [ -n "$codePath" ]; then
32     append_to_path $codePath
33   else
34     echo "Warning - unable to find code"
35   fi
36 fi
37
38 # Intended to be used for root
39 WIZARD="CPanel"
40
41 export CDPATH=/usr/local
42 export ulc=/usr/local/cpanel
43 export ulp=/usr/local/cp-monitoring-cpanel-plugin
44 export ulw=/usr/local/cp-monitoring-whm-plugin
45 export ulb=/usr/local/cp-banners-plugin
46 export CPANEL_TEAM='scrum'
47
48 # EA Tools
49 export EATOOLS_BUILD_DIR=~/git/ea-tools/SOURCES/
50 export EATOOLS_BIN_DIR=~/git/ea-tools/SOURCES/
51
52 #alias ulc="cd /usr/local/cpanel"
53 alias perl="$ulc/3rdparty/bin/perl"
54 alias stencilwatch='npx stencil test --spec --watchAll'
55 alias stencilwatche2e='npx stencil test --spec --e2e --watchAll'
56
57 # Unset PERLTIDY and PERLCRITIC as those variable override looking for
58 # ~/.perltidyrc and ~/.perlcriticrc.
59 unset PERLTIDY
60 unset PERLCRITIC
61
62 # This is the completer function for ulc. This completes any path that comes
63 # after the ulc as a path completion relative to $ulc
64 function _ulc {
65   local cur prev
66
67   COMPREPLY=()
68   cur="${COMP_WORDS[COMP_CWORD]}"
69   prev="${COMP_WORDS[COMP_CWORD-1]}"
70
71   # to be continued
72 } # _ulc
73
74 function ulc {
75   path=$1
76
77   if [ -s "$1" ]; then
78     cd $ulc/$path
79   else
80     cd $ulc
81   fi
82 } # ulc
83
84 function ulp {
85   path=$1
86
87   if [ -s "$1" ]; then
88     cd $ulp/$path
89   else
90     cd $ulp
91   fi
92 } # ulp
93
94
95 function ulw {
96   path=$1
97
98   if [ -s "$1" ]; then
99     cd $ulw/$path
100   else
101     cd $ulw
102   fi
103 } # ulw
104
105 function ulb {
106   path=$1
107
108   if [ -s "$1" ]; then
109     cd $ulb/$path
110   else
111     cd $ulb
112   fi
113 } # ulb
114