diff options
author | Rob Landley <rob@landley.net> | 2007-01-18 22:01:04 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-01-18 22:01:04 -0500 |
commit | e790130c2141257c7d230c09934fac119d750f44 (patch) | |
tree | 02fa2ec7a29cd2108fc083a5a54e278692c18baf /toys/toylist.h | |
parent | 5aab966edd2479e8a933bd02aba2fc33641b9832 (diff) | |
download | toybox-e790130c2141257c7d230c09934fac119d750f44.tar.gz |
Add count command.
Diffstat (limited to 'toys/toylist.h')
-rw-r--r-- | toys/toylist.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/toys/toylist.h b/toys/toylist.h index 2f95232f..f20b4f88 100644 --- a/toys/toylist.h +++ b/toys/toylist.h @@ -68,11 +68,12 @@ NEWTOY(toybox, NULL, 0) // The rest of these are alphabetical, for binary search. USE_BZCAT(NEWTOY(bzcat, "", TOYFLAG_USR|TOYFLAG_BIN)) -USE_CATV(NEWTOY(catv, "vte", TOYFLAG_NOFORK|TOYFLAG_USR|TOYFLAG_BIN)) +USE_CATV(NEWTOY(catv, "vte", TOYFLAG_USR|TOYFLAG_BIN)) +USE_COUNT(NEWTOY(count, "", TOYFLAG_USR|TOYFLAG_BIN)) USE_TOYSH(NEWTOY(cd, NULL, TOYFLAG_NOFORK)) USE_DF(NEWTOY(df, "Pkt*a", TOYFLAG_USR|TOYFLAG_SBIN)) USE_TOYSH(NEWTOY(exit, NULL, TOYFLAG_NOFORK)) -USE_HELLO(NEWTOY(hello, NULL, TOYFLAG_NOFORK|TOYFLAG_USR)) +USE_HELLO(NEWTOY(hello, NULL, TOYFLAG_USR)) USE_MKE2FS(NEWTOY(mke2fs, MKE2FS_OPTSTRING, TOYFLAG_SBIN)) USE_ONEIT(NEWTOY(oneit, "+p<1", TOYFLAG_SBIN)) USE_PWD(NEWTOY(pwd, NULL, TOYFLAG_BIN)) |