Update functions.bash
This commit is contained in:
parent
bb4256c28d
commit
d12c4a8376
1 changed files with 4 additions and 3 deletions
|
@ -1,14 +1,15 @@
|
|||
log () {
|
||||
m_time=`date "+%F %T"`
|
||||
echo $m_time" :: $scriptName :: $scriptVersion :: "$1
|
||||
echo $m_time" :: $scriptName :: $scriptVersion :: "$1 >> /config/logs/$scriptName.txt
|
||||
}
|
||||
|
||||
logfileSetup () {
|
||||
# auto-clean up log file to reduce space usage
|
||||
if [ -f "/config/logs/$scriptName.txt" ]; then
|
||||
if find /config/logs -type f -name "$scriptName.txt" -size +1024k | read; then
|
||||
echo "" > /config/logs/$scriptName.txt
|
||||
fi
|
||||
if find /config/logs -type f -name "$scriptName.txt" -size +1024k | read; then
|
||||
echo "" > /config/logs/$scriptName.txt
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ ! -f "/config/logs/$scriptName.txt" ]; then
|
||||
|
|
Loading…
Reference in a new issue