Adjust the format as desired.
Or if there is the number of nsecs rather than the fraction:
date +'%F %H:%M:%S.%N' -d @$(dc -e '9k 16779545532134567654 10 9^/p')
The dc stuff is RPN, k sets the precision, p is print.
date "+%F %T.%N"
Adjust the format as desired.
Or if there is the number of nsecs rather than the fraction:
date +'%F %H:%M:%S.%N' -d @$(dc -e '9k 16779545532134567654 10 9^/p')
The dc stuff is RPN, k sets the precision, p is print.