URL
https://opencores.org/ocsvn/minsoc/minsoc/trunk
Go to most recent revision |
Only display areas with differences |
Details |
Blame |
View Log
Rev 45 |
Rev 109 |
#!/bin/bash
|
#!/bin/bash
|
# Xanthopoulos Constantinos
|
# Xanthopoulos Constantinos
|
# Some useful function for my scripts
|
# Some useful function for my scripts
|
|
|
function cecho
|
function cecho
|
{
|
{
|
echo -e "\033[1m\033[33m$1\033[0m"
|
echo -e "\033[1m\033[33m$1\033[0m"
|
}
|
}
|
|
|
function cnecho
|
function cnecho
|
{
|
{
|
echo -e -n "\033[0m\033[33m$1\033[0m"
|
echo -e -n "\033[0m\033[33m$1\033[0m"
|
}
|
}
|
|
|
function errormsg
|
function errormsg
|
{
|
{
|
echo -e "\033[1m\033[31mError: $1\033[0m\n";
|
echo -e "\033[1m\033[31mError: $1\033[0m\n";
|
exit 1;
|
exit 1;
|
}
|
}
|
|
|
function execcmd
|
function execcmd
|
{
|
{
|
# Print Message
|
# Print Message
|
echo -e "\033[35m$1\033[0m"
|
echo -e "\033[35m$1\033[0m"
|
# Execute command
|
# Execute command
|
echo $2
|
echo $2
|
if [ $DEBUG -ne 1 ];
|
if [ $DEBUG -ne 1 ];
|
then
|
then
|
eval $2;
|
eval $2;
|
fi;
|
fi;
|
# Check Execution
|
# Check Execution
|
if [ $? -eq 0 ]
|
if [ $? -eq 0 ]
|
then
|
then
|
echo -e "\033[32mSuccessfully \"$1\"\033[0m\n";
|
echo -e "\033[32mSuccessfully \"$1\"\033[0m\n";
|
else
|
else
|
errormsg "$1";
|
errormsg "$1";
|
exit 1;
|
exit 1;
|
|
|
fi
|
fi
|
}
|
}
|
|
|
if [ $DEBUG -eq 1 ]
|
if [ $DEBUG -eq 1 ]
|
then
|
then
|
cecho "Debug mode on! Nothing will actually run";
|
cecho "Debug mode on! Nothing will actually run";
|
fi
|
fi
|
|
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.