Skip to content

Instantly share code, notes, and snippets.

View nitinsatish's full-sized avatar
🎯
Focusing

Nitin nitinsatish

🎯
Focusing
View GitHub Profile
@nitinsatish
nitinsatish / apach-up.sh
Created January 13, 2012 10:57
Apache upgrade script
#!/bin/bash
#script to upgrade Apache web server
/usr/local/apache2/bin/httpd -v
echo "Upgrade apache ? [y/n]"
read ans
if [ "$ans" = "y" ]
then
echo -e "\n Backing up Apache dir \n"
cp -pr /usr/local/apache2 /usr/local/apache2-`date +%F`.bk
tar -zxvf httpd-2.2.*.tar.gz