This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
script_file="$PWD/$0" | |
dir=`mktemp -d` && cd $dir | |
echo "Downloading and updating e2fsprogs..." | |
wget -i https://gist.githubusercontent.com/sushantmane/3800870712be136aa866/raw/fd20e6f53abc523c4180e68d773b15728202a661/e2fsprogs.url && rpm -Uvh *.rpm | |
echo "Removing rpms..." | |
rm -rf *.rpm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://downloads.hpdd.intel.com/public/e2fsprogs/latest/el6/RPMS/x86_64/e2fsprogs-1.42.12.wc1-7.el6.x86_64.rpm | |
https://downloads.hpdd.intel.com/public/e2fsprogs/latest/el6/RPMS/x86_64/e2fsprogs-debuginfo-1.42.12.wc1-7.el6.x86_64.rpm | |
https://downloads.hpdd.intel.com/public/e2fsprogs/latest/el6/RPMS/x86_64/e2fsprogs-devel-1.42.12.wc1-7.el6.x86_64.rpm | |
https://downloads.hpdd.intel.com/public/e2fsprogs/latest/el6/RPMS/x86_64/e2fsprogs-libs-1.42.12.wc1-7.el6.x86_64.rpm | |
https://downloads.hpdd.intel.com/public/e2fsprogs/latest/el6/RPMS/x86_64/e2fsprogs-static-1.42.12.wc1-7.el6.x86_64.rpm | |
https://downloads.hpdd.intel.com/public/e2fsprogs/latest/el6/RPMS/x86_64/libcom_err-1.42.12.wc1-7.el6.x86_64.rpm | |
https://downloads.hpdd.intel.com/public/e2fsprogs/latest/el6/RPMS/x86_64/libcom_err-devel-1.42.12.wc1-7.el6.x86_64.rpm | |
https://downloads.hpdd.intel.com/public/e2fsprogs/latest/el6/RPMS/x86_64/libss-1.42.12.wc1-7.el6.x86_64.rpm | |
https://downloads.hpdd.intel.com/public/e2fsprogs/latest/el6/RPMS/x86_64/libss-devel-1.42.12.wc1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set ssl_starttls=yes | |
set ssl_force_tls=yes | |
set imap_user = '[email protected]' | |
set imap_pass = 'PASSWORD' | |
set from='[email protected]' | |
set realname='Sushant Mane' | |
set folder = imaps://imap.gmail.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nu | |
filetype plugin indent on | |
syn on se title | |
set tabstop=8 | |
set softtabstop=8 | |
set shiftwidth=8 | |
set noexpandtab | |
set list listchars=tab:»\ ,trail:.,extends:»,precedes:« | |
set ai |