Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
342 views
in Technique[技术] by (71.8m points)

bash - Date utils date difference piping

I am using date utils to try and calculate elapsed time. For example $var = 19-11-27 22:36:47 Which is created by
date "+%y-%m-%d %T"
This was made awhile back.
I need to turn it into another variable. So I would think this would work.

foo=$(dateutils.ddiff | echo "$var" | date "+%y-%m-%d %T" | -f '%dD %HH %mM')

running this i get

./script.sh: line 7: -f: command not found
ddiff: Error: reference DATE must be specified    

So how do I pipe this correctly or is their an alternative?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
$Value1=19-11-27 22:36:47
$Value2=date "+%y-%m-%d %T" 
var=$(date -u -d @$(($(date -d "$Value2" '+%s') - $(date -d "$Value1" '+%s'))) '+%H:%M')

I ditched date utils for this.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...