Skip to content
Snippets Groups Projects
lib.sh 781 B
Newer Older
#!/bin/bash
#-------------------------------------------------------------------------------
# Bash function library for Mentat system.
#
# This file is part of Mentat system (https://mentat.cesnet.cz/).
#
# Copyright (C) since 2011 CESNET, z.s.p.o
# Use of this source is governed by the MIT license, see LICENSE file.
#-------------------------------------------------------------------------------

	if [ ! -L $2 ] ; then

function print_title {
	echo "================================================================================"
	echo " $1"
	echo "================================================================================"
	date
}

function print_subtitle {
	echo "==========> $1"
}