linux current time code example
Example 1: get current server time centos
timedatectl
Example 2: show date linux
date +"%d-%m-%y"
Example 3: linux time now command
date
#Sun Feb 7 17:15:03 UTC 2021
Example 4: linux date command live update
{ while true ; do date ; sleep 0.1 ; done } | uniq