-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.sh
More file actions
28 lines (22 loc) · 961 Bytes
/
Copy pathall.sh
File metadata and controls
28 lines (22 loc) · 961 Bytes
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
command_exists () {
type "$1" &> /dev/null ;
}
if command_exists wget ;then
COMMANDWEB="wget --no-check-certificate"
else
COMMANDWEB="curl -OL"
fi
mkdir -p github
cd github/
rm ./*.* 2>/dev/null
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/index.php
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/bashrc.txt
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/debian-cleaner.sh
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/debian-deploy-nginx.sh
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/debian-deploy-mongodb.sh
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/gitignore.txt
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/iptables-stop.sh
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/iptables.sh
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/nginx_on.sh
$COMMANDWEB https://raw.github.com/damln/AdminTools/master/nginx.conf
cd ..