Create SDATE, similar to DDATE and CDATE
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
This commit is contained in:
parent
ba11374c6f
commit
4696590a73
1 changed files with 3 additions and 2 deletions
|
@ -51,6 +51,7 @@ FULL_VERSION="ccollect ${VERSION} (${RELEASE})"
|
||||||
#
|
#
|
||||||
CDATE="date +%Y%m%d-%H%M"
|
CDATE="date +%Y%m%d-%H%M"
|
||||||
DDATE="date +%Y-%m-%d-%H:%M:%S"
|
DDATE="date +%Y-%m-%d-%H:%M:%S"
|
||||||
|
SDATE="date +%s"
|
||||||
|
|
||||||
#
|
#
|
||||||
# unset values
|
# unset values
|
||||||
|
@ -271,7 +272,7 @@ while [ "${i}" -lt "${no_sources}" ]; do
|
||||||
#
|
#
|
||||||
# Record start of backup: internal and for the user
|
# Record start of backup: internal and for the user
|
||||||
#
|
#
|
||||||
begin_s="$(date +%s)"
|
begin_s="$(${SDATE})"
|
||||||
_techo "Beginning to backup"
|
_techo "Beginning to backup"
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -556,7 +557,7 @@ while [ "${i}" -lt "${no_sources}" ]; do
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Calculation
|
# Calculation
|
||||||
end_s="$(date +%s)"
|
end_s="$(${SDATE})"
|
||||||
|
|
||||||
full_seconds="$((${end_s} - ${begin_s}))"
|
full_seconds="$((${end_s} - ${begin_s}))"
|
||||||
hours="$((${full_seconds} / 3600))"
|
hours="$((${full_seconds} / 3600))"
|
||||||
|
|
Loading…
Reference in a new issue