With %TS it always outputs the fractional part. Is there a way to get rid of the fractional part?
%TS
find ./ -type f -printf "%TY%Tm%Td-%TH%TM%TS %P " 20200813-133459.6920994010 export.txt
You can discard the decimal part by specifying a precision of two bytes.
%.2TS
2.1m questions
2.1m answers
60 comments
57.0k users