Now, I'm on a Mac OS machine and the Apple find can not use printf.NotNull wrote: ↑Sun Jun 11, 2023 9:29 pm When using Linux' find command, this should do:Which generates output likeCode: Select all
find.exe -printf '"%p",%s,%TFT%TT,,\n'
(Date Created and Attributes are not available in LInux so those are left blank)Code: Select all
"./Everything64.exe",4798984,2023-05-26T07:04:38.5761116000,,
And when saved as an EFU file, Everything will be able to read and understand it, after adding the Filename,Size,Date Modified,Date Created,Attributes header.
I have tried hours and spent a lof of time chatting with ChatGPT to help me converting that linux find to a mac find with the same output, but failed miserable. (I spare you all my tries and errors...)
All I got, was the "stat" command from mac to show me that all the needed information are available:
Code: Select all
stat /tmp/test.txt
16777220 13001552577 -rw-r--r-- 1 user wheel 0 103944533 "Aug 3 19:27:25 2023" "Aug 3 19:27:36 2023" "Aug 3 19:27:36 2023" "Aug 3 13:13:18 2023" 4096 229384 0 /tmp/test.txt
Maybe here is some Mac Master which can tell me, how to format the Linux string to a Mac string?
Any Help is needed ;-D Thank you!