-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.functions.sh
More file actions
120 lines (102 loc) · 2.67 KB
/
.functions.sh
File metadata and controls
120 lines (102 loc) · 2.67 KB
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
112
113
114
115
116
117
118
#!/bin/bash
function touchp() {
mkdir -p $(dirname $1) && touch "$1"
}
function run_within_dir(){
dir_pwd=$(pwd)
cd $1 && $2
cd "$dir_pwd"
}
function update_current(){
update_bash
for file in ~/bash/.*.sh
do source $file
done
}
function update_bash(){
GREEN='\033[1;32m'
BLUE='\033[1;34m'
RESET='\033[0m'
RED='\033[1;31m'
dir_pwd=$(pwd)
cd ~/bash && git pull || { printf "${RED}Error: git pull failed. Aborting.${RESET}\n"; cd "$dir_pwd"; exit 1; }
cd "$dir_pwd"
printf "${BLUE}=======> ${GREEN} Updating bash .dot scripts...........${RESET}\n"
}
# All the dig info
function digga() {
dig +nocmd "$1" any +multiline +noall +answer
}
# git functions
# most pulled from https://github.com/ignu/dotfiles
mk() {
mkdir $1 && cd $1
}
function load() {
echo "Please enter a command (ps/hssh):"
read VAR
if [[ $VAR == "ps" ]]; then
logger "Restarting PostgreSQL server..."
sudo service postgresql restart
elif [[ $VAR == "hssh" ]]; then
logger "SSH into Heroku server........"
logger "============>"
heroku run bash
else
heroku run rails c
fi
}
list_shortcuts(){
echo "gclone"
echo "mk"
echo "load"
echo "linuxfiles"
echo "linuxdev"
}
rmv () {
if [ -e "$1" ]; then
read -r -p "Are you sure you want to remove '$1'? Type 'yes' to confirm: " response
if [[ "$response" == "yes" ]]; then
if [ -d "$1" ]; then
/bin/rm -r "$1"
echo "Directory '$1' has been removed."
else
/bin/rm "$1"
echo "File '$1' has been removed."
fi
else
echo "Operation canceled. '$1' was not removed."
fi
else
echo "Please provide a file or directory to remove , '$1' does not exist."
fi
}
# Archives and extractors taken from HTB
function extract {
if [ -z "$1" ]; then
echo "Usage: extract <path/file_name>.<zip|rar|bz2|gz|tar|tbz2|tgz|Z|7z|xz|ex|tar.bz2|tar.gz|tar.xz>"
else
if [ -f $1 ]; then
case $1 in
*.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;;
*.tar.xz) tar xvJf $1 ;;
*.lzma) unlzma $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x -ad $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*.xz) unxz $1 ;;
*.exe) cabextract $1 ;;
*) echo "extract: '$1' - unknown archive method" ;;
esac
else
echo "$1 - file does not exist"
fi
fi
}