diff options
author | Rob Landley <rob@landley.net> | 2007-08-29 08:10:01 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-08-29 08:10:01 -0500 |
commit | 7ecedea509f9a5484d122c3c430d84954cb7c811 (patch) | |
tree | fdfdb4cf7a179303376b659a8e6ec2e3ac8ac227 /toys/toylist.h | |
parent | 6ed92f34c01157e03a9afdc6dc1822875cf0d615 (diff) | |
download | toybox-7ecedea509f9a5484d122c3c430d84954cb7c811.tar.gz |
Add "help" command. (Building help/help.h requires python, but I'll ship
that file with release versions.)
Diffstat (limited to 'toys/toylist.h')
-rw-r--r-- | toys/toylist.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toys/toylist.h b/toys/toylist.h index 0b3845d9..deeb6204 100644 --- a/toys/toylist.h +++ b/toys/toylist.h @@ -95,7 +95,8 @@ USE_DF(NEWTOY(df, "Pkt*a", TOYFLAG_USR|TOYFLAG_SBIN)) USE_ECHO(NEWTOY(echo, "+en", TOYFLAG_BIN)) USE_TOYSH(NEWTOY(exit, NULL, TOYFLAG_NOFORK)) USE_FALSE(NEWTOY(false, NULL, TOYFLAG_BIN)) -USE_HELLO(NEWTOY(hello, NULL, TOYFLAG_USR)) +USE_HELLO(NEWTOY(hello, NULL, TOYFLAG_USR|TOYFLAG_BIN)) +USE_HELP(NEWTOY(help, "<1", TOYFLAG_BIN)) USE_MKE2FS(NEWTOY(mke2fs, MKE2FS_OPTSTRING, TOYFLAG_SBIN)) USE_ONEIT(NEWTOY(oneit, "+<1p", TOYFLAG_SBIN)) USE_PWD(NEWTOY(pwd, NULL, TOYFLAG_BIN)) |