-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zprofile
47 lines (36 loc) · 1.21 KB
/
.zprofile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
set -o vi
export CVSROOT=':gserver:@cmscvs.cern.ch:/cvs_server/repositories/CMSSW'
export AFS=/afs/cern.ch/user/f/friis
alias stylize='astyle --style=allman --indent=spaces=3 --pad-oper --break-blocks'
alias showFatties='du -h -a | grep \[0-9\]M | sort -n'
alias convertEPS='ls *eps | xargs -n 1 epstopdf'
alias cvstat='cvs status | grep -e "File:" -e "?" | grep -v -e "Up-to-date"'
alias hist='history | grep'
echo "HELLO"
source ~/.zprofile_marvin
source ~/.zprofile_laptop
source ~/.zprofile_lpc
source ~/.zprofile_t3
source ~/.zprofile_lxplus
# Setup SSH agent
echo "Setting up SSH agent"
SSH_ENV="$HOME/.ssh/environment"
#function start_agent {
# echo "Initialising new SSH agent..."
# /usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
# echo succeeded
# chmod 600 "${SSH_ENV}"
# . "${SSH_ENV}" > /dev/null
# /usr/bin/ssh-add;
#}
# Source SSH settings, if applicable
#if [ -f "${SSH_ENV}" ]; then
# . "${SSH_ENV}" > /dev/null
# #ps ${SSH_AGENT_PID} doesn't work under cywgin
# #ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
# ps -e | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
# start_agent;
# }
#else
# start_agent;
#fi