This file contains hidden or 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/sh | |
# Name: tomcat7installer | |
# Description: This script will install tomcat7 of ubuntu 14 release in 16.04. | |
# Tomcat ship with or installed in ubuntu 16.04 is incompatible with Java 7, | |
# so installing old tomcat version will solve this issue that is achievable through this script. | |
# remove tomcat if already installed. | |
echo "Removing existing tomcat7..." | |
sudo service tomcat7 stop >/dev/null 2>&1 |
This file contains hidden or 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/sh | |
# Name: propertyeditor | |
# Desc: add,update,delete, list properties interactively | |
# Args: $1 -> property file to edit. | |
PATH=/bin:/usr/bin:/usr/local/bin | |
DEFAULTFILE="$HOME/rahogata.properties" | |
# ignore signals during file operations |
NewerOlder