-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapt-bash-support.sh
executable file
·45 lines (43 loc) · 1.18 KB
/
apt-bash-support.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
#!/bin/bash
#===============================================================================
#
# FILE: apt-bash-support.sh
#
# USAGE: ./apt-bash-support.sh
#
# DESCRIPTION: Install wget, unzip, vim and Bash Support Plugin
# See http://www.thegeekstuff.com/2009/02/make-vim-as-your-bash-ide-using-apt-bash-support-plugin/
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: Use \sfu to create a new function, use \cfu to create comments
# \sc case in . esac
# \sl elif then
# \sf for in do done
# \sfo for ((.)) do done
# \si if then fi
# \sie if then else fi
# \ss select in do done
# \st until do done
# \sw while do done
# \sfu function
# \se echo e "\n"
# \sp printf "\n"
# AUTHOR: Matt Coffey (),
# COMPANY:
# VERSION: 1.0
# CREATED: 08/14/2013 10:02:50 PM UTC
# REVISION: ---
#===============================================================================
#Install vim, wget and unzip
sudo apt-get install vim <<EOF
yes
EOF
sudo apt-get install wget <<EOF
yes
EOF
sudo apt-get install unzip <<EOF
yes
EOF
#Run the generic bash-support.sh
bash vim-bash-support.sh