Displaying 4 results from an estimated 4 matches for "opt_max_size".
Did you mean:
get_max_size
2005 Apr 25
2
How about a --min-size option, next to --max-size
There's a rather old bug report in Debian's bug tracking system
(see http://bugs.debian.org/27126) about wanting to be able to specify
the maximum file size, as well as the minimum file size. Here's the
text:
Sometimes, it's useful to specify a file size range one is
interested in.
For example, I'd like to keep an up-to-date mirror of Debian, but I
currently
2008 Feb 20
1
[PATCH] build fix without iconv support
...)
diff --git a/options.c b/options.c
index 7f69bd2..75ceeeb 100644
--- a/options.c
+++ b/options.c
@@ -1137,7 +1137,9 @@ int parse_arguments(int *argc_p, const char ***argv_p, int frommain)
break;
case OPT_NO_ICONV:
+#ifdef ICONV_OPTION
iconv_opt = NULL;
+#endif
break;
case OPT_MAX_SIZE:
2024 Mar 18
0
[PATCH] add option to skip files based on age/mtime
...nt ignore_errors = 0;
int modify_window = 0;
int blocking_io = -1;
@@ -698,6 +700,8 @@ static struct poptOption long_options[] = {
{"ignore-existing", 0, POPT_ARG_NONE, &ignore_existing, 0, 0, 0 },
{"max-size", 0, POPT_ARG_STRING, &max_size_arg,
OPT_MAX_SIZE, 0, 0 },
{"min-size", 0, POPT_ARG_STRING, &min_size_arg,
OPT_MIN_SIZE, 0, 0 },
+ {"max-age", 0, POPT_ARG_INT, &max_age, 0, 0, 0 },
+ {"min-age", 0, POPT_ARG_INT, &min_age, 0, 0, 0 },
{"max-alloc", 0, P...
2005 Jan 31
1
[patch] add "--ignore" option
...ited by nulls\n");
rprintf(F," --version print version number\n");
@@ -336,6 +338,7 @@
OPT_FILTER, OPT_COMPARE_DEST, OPT_COPY_DEST, OPT_LINK_DEST,
OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_MODIFY_WINDOW,
OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_TIMEOUT, OPT_MAX_SIZE,
+ OPT_IGNORE, OPT_IGNORE_FROM,
OPT_REFUSED_BASE = 9000};
static struct poptOption long_options[] = {
@@ -359,8 +362,10 @@
{"filter", 'f', POPT_ARG_STRING, 0, OPT_FILTER, 0, 0 },
{"exclude", 0, POPT_ARG_STRING, 0, OPT_EXCLUDE, 0, 0 },...