aboutsummaryrefslogtreecommitdiff
path: root/bin/uts.awk
blob: 3aaec2abc4e4c099fd347b1fd7c4c38a245f46cb (plain) (blame)
1
2
3
4
5
6
# Print the current UNIX epoch timestamp in a POSIX compatible fashion
BEGIN {
    srand()
    print srand()
    exit
}