| 249 | }; |
| 250 | |
| 251 | static void NORETURN tls_usage(int ret) |
| 252 | { |
| 253 | FILE *F = ret ? stderr : stdout; |
| 254 | fprintf(F,"usage: " PROGRAM " [OPTIONS] FILE ...\n"); |
| 255 | fprintf(F,"Trivial file listing program for portably checking rsync\n"); |
| 256 | fprintf(F,"\nOptions:\n"); |
| 257 | fprintf(F," -U, --atimes display access (last-used) times\n"); |
| 258 | #ifdef SUPPORT_CRTIMES |
| 259 | fprintf(F," -N, --crtimes display create times (newness)\n"); |
| 260 | #endif |
| 261 | fprintf(F," -l, --link-times display the time on a symlink\n"); |
| 262 | fprintf(F," -L, --link-owner display the owner+group on a symlink\n"); |
| 263 | #ifdef SUPPORT_XATTRS |
| 264 | fprintf(F," -f, --fake-super display attributes including fake-super xattrs\n"); |
| 265 | #endif |
| 266 | fprintf(F," -h, --help show this help\n"); |
| 267 | exit(ret); |
| 268 | } |
| 269 | |
| 270 | int |
| 271 | main(int argc, char *argv[]) |