#!/bin/bash

# This just setups up BackTrac2 with some things I like for clas . .
 
mkdir /root/downloads
cd /root/downloads/
wget http://the.earth.li/~sgtatham/putty/latest/putty-0.60.tar.gz
tar zxvf putty-0.60.tar.gz
cd putty-0.60
cd unix/
make -f Makefile.gtk
ln -s /root/downloads/putty-0.60/unix/putty /usr/bin/putty
cd /root/downloads/
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.1.tar.bz2
bunzip2 vim-7.1.tar.bz2
tar xvf vim-7.1.tar
cd vim71/
./configure
make&& make install

echo "Putty and Vim are installed."











