diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-05-01 19:10:52 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-05-01 19:10:52 +0000 |
commit | 1f0e03b09991f10a5ac79cbb86ca820222269319 (patch) | |
tree | 7f40ce6f49ca9ce727653928d1b9f655afb5cb66 /applets | |
parent | 9db4cbf4ca67c52017346a840e797d75dd549dd1 (diff) | |
download | busybox-w32-1f0e03b09991f10a5ac79cbb86ca820222269319.tar.gz busybox-w32-1f0e03b09991f10a5ac79cbb86ca820222269319.tar.bz2 busybox-w32-1f0e03b09991f10a5ac79cbb86ca820222269319.zip |
Some accrued fixes/updates.
* cp/mv now accepts (and ignores) the -f flag, since it always
does force anyway
* tail can now accept -<num> commands (e.g. -10) for better
compatibility with the standard tail command
* added a simple id implementation; doesn't support supp. groups yet
git-svn-id: svn://busybox.net/trunk/busybox@507 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index ca767584a..d8a38ada3 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -134,6 +134,9 @@ static const struct Applet applets[] = { | |||
134 | #ifdef BB_HOSTNAME | 134 | #ifdef BB_HOSTNAME |
135 | {"hostname", hostname_main, _BB_DIR_BIN}, | 135 | {"hostname", hostname_main, _BB_DIR_BIN}, |
136 | #endif | 136 | #endif |
137 | #ifdef BB_ID | ||
138 | {"id", id_main, _BB_DIR_USR_BIN}, | ||
139 | #endif | ||
137 | #ifdef BB_INIT | 140 | #ifdef BB_INIT |
138 | {"init", init_main, _BB_DIR_SBIN}, | 141 | {"init", init_main, _BB_DIR_SBIN}, |
139 | #endif | 142 | #endif |