diff options
Diffstat (limited to 'src/opts.c')
| -rw-r--r-- | src/opts.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,6 @@ #include "unalf.h" -#define OPTIONS "aefklLopqtvVd:x:" +#define OPTIONS "aefklLopqtTvVd:x:" /* uncomment to test exclude/include glob lists */ // #define DEBUG_GLOBS @@ -44,6 +44,7 @@ void parse_opts(int argc, char * const *argv) { case 'p': opts.extract_to_stdout++; opts.quiet++; break; case 'q': opts.quiet++; break; case 't': opts.testonly++; opts.listonly = 0; break; + case 'T': opts.ignore_datetime = 1; break; case 'v': opts.listonly = 1; opts.testonly = 0; opts.verbose_list++; break; case 'V': puts(VERSION); exit(0); break; case 'd': opts.outdir = optarg; break; |
