fix: display correct time on Linux; close #463

This commit is contained in:
Jorge Bucaran 2018-10-12 23:08:05 +09:00
parent 28aaa277e0
commit 55b543eb13
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

View file

@ -9,7 +9,7 @@ switch (command uname)
end
case \*
function _fisher_now -a elapsed
command date "+%s%3N" | command awk "{ sub(/3N\$/,\"000\"); print \$0 - 0$elapsed }"
command date "+%s%3N" | command awk -v ELAPSED="$elapsed" '{ sub(/%?3N$/, "000") } $0 -= ELAPSED'
end
end