-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_profile
36 lines (28 loc) · 874 Bytes
/
.bash_profile
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
# if [ "$BASH" ]; then
# if [ -f ~/.bashrc ]; then
# . ~/.bashrc
# fi
# fi
### Old: SSH agent for docker container
# SSH_ENV="$HOME/.ssh/agent-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 ~/.ssh/id_cyberbattle;
# }
# # 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 || {
# start_agent;
# }
# else
# start_agent;
# fi
alias bfg='java -jar /bfg-1.14.0.jar'
### PYTHONPATH update to exclude including everywehre "import cyberbattle"
export PYTHONPATH=$PYTHONPATH:/root