mirror of
https://github.com/sheumann/hush.git
synced 2024-12-28 07:30:23 +00:00
run-parts: add --reverse
This commit is contained in:
parent
b29028e351
commit
19fb67eee4
@ -47,14 +47,15 @@ struct globals {
|
|||||||
enum { NUM_CMD = (COMMON_BUFSIZE - sizeof(struct globals)) / sizeof(cmd[0]) };
|
enum { NUM_CMD = (COMMON_BUFSIZE - sizeof(struct globals)) / sizeof(cmd[0]) };
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
RUN_PARTS_OPT_a = (1 << 0),
|
OPT_r = (1 << 0),
|
||||||
RUN_PARTS_OPT_u = (1 << 1),
|
OPT_a = (1 << 1),
|
||||||
RUN_PARTS_OPT_t = (1 << 2),
|
OPT_u = (1 << 2),
|
||||||
RUN_PARTS_OPT_l = (1 << 3) * ENABLE_FEATURE_RUN_PARTS_FANCY,
|
OPT_t = (1 << 3),
|
||||||
|
OPT_l = (1 << 4) * ENABLE_FEATURE_RUN_PARTS_FANCY,
|
||||||
};
|
};
|
||||||
|
|
||||||
#if ENABLE_FEATURE_RUN_PARTS_FANCY
|
#if ENABLE_FEATURE_RUN_PARTS_FANCY
|
||||||
#define list_mode (option_mask32 & RUN_PARTS_OPT_l)
|
#define list_mode (option_mask32 & OPT_l)
|
||||||
#else
|
#else
|
||||||
#define list_mode 0
|
#define list_mode 0
|
||||||
#endif
|
#endif
|
||||||
@ -74,7 +75,8 @@ static bool invalid_name(const char *c)
|
|||||||
|
|
||||||
static int bb_alphasort(const void *p1, const void *p2)
|
static int bb_alphasort(const void *p1, const void *p2)
|
||||||
{
|
{
|
||||||
return strcmp(*(char **) p1, *(char **) p2);
|
int r = strcmp(*(char **) p1, *(char **) p2);
|
||||||
|
return (option_mask32 & OPT_r) ? -r : r;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int act(const char *file, struct stat *statbuf, void *args, int depth)
|
static int act(const char *file, struct stat *statbuf, void *args, int depth)
|
||||||
@ -104,7 +106,7 @@ static const char runparts_longopts[] ALIGN1 =
|
|||||||
"test\0" No_argument "t"
|
"test\0" No_argument "t"
|
||||||
#if ENABLE_FEATURE_RUN_PARTS_FANCY
|
#if ENABLE_FEATURE_RUN_PARTS_FANCY
|
||||||
"list\0" No_argument "l"
|
"list\0" No_argument "l"
|
||||||
//TODO: "reverse\0" No_argument "r"
|
"reverse\0" No_argument "r"
|
||||||
//TODO: "verbose\0" No_argument "v"
|
//TODO: "verbose\0" No_argument "v"
|
||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
@ -121,9 +123,10 @@ int run_parts_main(int argc, char **argv)
|
|||||||
#if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS
|
#if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS
|
||||||
applet_long_options = runparts_longopts;
|
applet_long_options = runparts_longopts;
|
||||||
#endif
|
#endif
|
||||||
|
/* We require exactly one argument: the directory name */
|
||||||
/* We require exactly one argument: the directory name */
|
/* We require exactly one argument: the directory name */
|
||||||
opt_complementary = "=1:a::";
|
opt_complementary = "=1:a::";
|
||||||
getopt32(argv, "a:u:t"USE_FEATURE_RUN_PARTS_FANCY("l"), &arg_list, &umask_p);
|
getopt32(argv, "ra:u:t"USE_FEATURE_RUN_PARTS_FANCY("l"), &arg_list, &umask_p);
|
||||||
|
|
||||||
umask(xstrtou_range(umask_p, 8, 0, 07777));
|
umask(xstrtou_range(umask_p, 8, 0, 07777));
|
||||||
|
|
||||||
@ -155,7 +158,7 @@ int run_parts_main(int argc, char **argv)
|
|||||||
char *name = *names++;
|
char *name = *names++;
|
||||||
if (!name)
|
if (!name)
|
||||||
break;
|
break;
|
||||||
if (option_mask32 & (RUN_PARTS_OPT_t | RUN_PARTS_OPT_l)) {
|
if (option_mask32 & (OPT_t | OPT_l)) {
|
||||||
puts(name);
|
puts(name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -165,9 +168,9 @@ int run_parts_main(int argc, char **argv)
|
|||||||
continue;
|
continue;
|
||||||
n = 1;
|
n = 1;
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
bb_perror_msg("failed to exec %s", name);
|
bb_perror_msg("can't exec %s", name);
|
||||||
else /* ret > 0 */
|
else /* ret > 0 */
|
||||||
bb_error_msg("%s exited with return code %d", name, ret);
|
bb_error_msg("%s exited with code %d", name, ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
return n;
|
return n;
|
||||||
|
Loading…
Reference in New Issue
Block a user