aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-01 19:10:52 +0000
committerErik Andersen <andersen@codepoet.org>2000-05-01 19:10:52 +0000
commit94f5e0ba7ca7af260f4bf2d8c77b8e6f6f528b18 (patch)
tree7f40ce6f49ca9ce727653928d1b9f655afb5cb66 /applets
parent28c49b6c9c98dc592759063d10c49b209e849cae (diff)
downloadbusybox-w32-94f5e0ba7ca7af260f4bf2d8c77b8e6f6f528b18.tar.gz
busybox-w32-94f5e0ba7ca7af260f4bf2d8c77b8e6f6f528b18.tar.bz2
busybox-w32-94f5e0ba7ca7af260f4bf2d8c77b8e6f6f528b18.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
Diffstat (limited to 'applets')
-rw-r--r--applets/busybox.c3
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