Skip to content

Instantly share code, notes, and snippets.

@jdv
Created September 26, 2023 14:45
Show Gist options
  • Save jdv/62f6107b5ff8f341884c6214063c5719 to your computer and use it in GitHub Desktop.
Save jdv/62f6107b5ff8f341884c6214063c5719 to your computer and use it in GitHub Desktop.
jdv@jdv-lap:~$ stat foo.txt | grep Mod
Modify: 2023-09-21 13:48:39.131224342 -0400
jdv@jdv-lap:~$ raku -e '"foo.txt".IO.modified.say'
Instant:1695318556.1312243
jdv@jdv-lap:~$ node -e 'fs.stat("foo.txt", (e,s) => {console.log(s)})' | grep mtimeM
mtimeMs: 1695318519131.2244,
jdv@jdv-lap:~$
# NOTE
stat - 131224342
raku - 1312243
node - "1312244" (131.2244)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment