Não, não há nenhum, pelo menos não com o gnu tar.
Veja como a data é formatada ( tartime()
em tree/src/list.c
)
if (tm) { if (full_time) { strftime (buffer, sizeof buffer, "%Y-%m-%d %H:%M:%S", tm); code_ns_fraction (ns, buffer + strlen (buffer)); } else strftime (buffer, sizeof buffer, "%Y-%m-%d %H:%M", tm); return buffer; }
E aqui está como o cabeçalho do arquivo é impresso ( simple_print_header()
em tree/src/list.c
):
fprintf (stdlis, "%s %s/%s %*s %-*s", modes, user, group, ugswidth - pad + sizelen, size, datewidth, time_stamp);