-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup_bashrc.sh
112 lines (95 loc) · 2.49 KB
/
setup_bashrc.sh
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/bin/bash
#
# Set up several functions to .bashrc like cs (a combination of cd+ls), ccat
# (cat with color) or reimplement evince to run in background.
#
# To set up the bashrc script in Windows using cygwin it is necessary to add
# at the beginning of the script to fix a problem with newlines the following:
# (set -o igncr) 2>/dev/null && set -o igncr;
#
# Tested in Ubuntu and Mac
#
# METHOD OF USE:
#
# source setup_bashrc.sh
#
# We have to source the file instead of using sh. The reason is because the line
# source ~./.bashrc will source the file in the sub-shell, i.e. a shell which
# is started as child process of the main shell.
#
# Contributors: Miguel Gonzalez-Fierro, Gustav Henning and Frederic Dauod
#
# Exit if not sourced
if [ "$0" == "$BASH_SOURCE" ]; then
echo >&2 "Setup script has to be sourced, not run with sh. Aborting"
exit 1
fi
# Create save path file if it is not created
if [ ! -e ~/.sp ] ; then
touch ~/.sp
fi
# To set up the bashrc script in Windows using cygwin it is necessary to add
# at the beginning of the script to fix a problem with newlines the following:
if [ $(uname -o) == "Cygwin" ]; then
(set -o igncr) 2>/dev/null && set -o igncr;
fi
echo "
################################################################################
#Hide user name and host in terminal
#export PS1="\w$ "
#Make ls every time a terminal opens
ls
#cd + ls
function cs () {
cd \$1
ls -a
}
#transfer path: save the current path to a hidden file
function tp () {
pwd > ~/.sp
}
#goto transfer path: goes where the previously saved tp points
function gtp () {
cs \`cat ~/.sp\`
}
#cat with color
function ccat () {
source-highlight -fesc -i \$1
}
#Remove trash from terminal and runs program in background
function evince () {
/usr/bin/evince \$* 2> /dev/null & disown
}
function gedit (){
/usr/bin/gedit \$* 2> /dev/null & disown
}
# up N: moves N times upwards (cd ../../../{N})
function up () {
LIMIT=\$1
P=\$PWD
for ((i=1; i <= LIMIT; i++))
do
P=\$P/..
done
cs \$P
export MPWD=\$P
}
" >> ~/.bashrc
source ~/.bashrc
# if unix & dos2unix exists apply it
if [ $(uname -o) == "Cygwin" ]; then
if [ command -v dos2unix >/dev/null 2>&1 ]; then
dos2unix $INTENDED_BASH_PATH
fi
fi
# Add .bash_profile if it doesn't exist
if [ ! -f ~/.bash_profile ]; then
echo ".bash_profile not found! Creating..."
echo "
# include .bashrc if it exists
if [ -f "\$HOME/.bashrc" ]; then
. "\$HOME/.bashrc"
fi
" > ~/.bash_profile
fi
echo ".bashrc updated"