diff options
author | xyz <gky44px1999@gmail.com> | 2021-08-14 02:11:33 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-08-14 02:11:33 -0700 |
commit | 395a0b8f57d7cd24f0094aa96adcda13c57c3927 (patch) | |
tree | 5f2e399fb74e03594419c2868d3aef66744a1247 /.local | |
parent | ce2aedc4395b6bb3016113e734e06bbf91a1af57 (diff) |
refactor
Diffstat (limited to '.local')
-rwxr-xr-x | .local/bin/time.uuid | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/time.uuid b/.local/bin/time.uuid index eadae926..11cc67ad 100755 --- a/.local/bin/time.uuid +++ b/.local/bin/time.uuid @@ -3,4 +3,4 @@ # echo current nanosecond since epoch and alpha-numerically ordered UUID # https://stackoverflow.com/questions/28681650/generate-alpha-numerically-ordered-uuids-over-time?noredirect=1&lq=1 # https://askubuntu.com/questions/342842/what-does-this-command-mean-awk-f-print-4 -echo "$(date '+%s.%N')"."$(uuidgen -t | awk -F- '{OFS="-"; print $3,$2,$1,$4,$5}')" +echo "$(date '+%s.%N').$(uuidgen -t | awk -F- '{OFS="-"; print $3,$2,$1,$4,$5}')" |