From 093edef55a54eb2c725a45283c93a9e12ef86363 Mon Sep 17 00:00:00 2001 From: onceupon Date: Tue, 16 Mar 2021 19:43:41 +0800 Subject: [PATCH] + time returns the current time with nanoseconds. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 26b139e..3fac8be 100644 --- a/README.md +++ b/README.md @@ -1105,7 +1105,11 @@ date +%F # or date +'%d-%b-%Y-%H:%M:%S' -#10-Apr-2020-21:54:40 +# 10-Apr-2020-21:54:40 + +# returns the current time with nanoseconds. +date +"%T.%N" +# 11:42:18.664217000 ``` ##### wait for random duration (e.g. sleep 1-5 second, like adding a jitter)