Skip to content

Instantly share code, notes, and snippets.

@highel
highel / install_arimo.sh
Last active June 22, 2016 20:32
Installs Arimo font to OpenJDK inside CentOS 7
jre=`update-alternatives --display java |grep -om 1 '\ /.*jdk.*jre'`
jre=$jre'/lib/fonts'
unzip -o -j arimo.zip "*.ttf" -d $jre
echo Installed Arimo font to $jre
#!/bin/bash
#
# description: Tomcat Start Stop Restart
# processname: tomcat
# chkconfig: 234 20 80
#
# Tomcat 8 start/stop/status init.d script
# Initially forked from: https://gist.github.com/valotas/1000094
# @author: Miglen Evlogiev <bash@miglen.com>
#