diff options
author | John Beppu <beppu@lbox.org> | 1999-12-10 05:27:16 +0000 |
---|---|---|
committer | John Beppu <beppu@lbox.org> | 1999-12-10 05:27:16 +0000 |
commit | 059f152a7a2d1796cf93d1a79f33055d38b94f2a (patch) | |
tree | f099ca4df6d8a137af037e0bfd6976d06a627e66 /applets | |
parent | 29fcc90f3e0ebd8b4d4d5f1a96741f982baa38f1 (diff) | |
download | busybox-059f152a7a2d1796cf93d1a79f33055d38b94f2a.tar.gz |
Implemented tee(1).
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 c050acc9c..4ac907665 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -182,6 +182,9 @@ static const struct Applet applets[] = { #ifdef BB_TAR //bin {"tar", tar_main}, #endif +#ifdef BB_TEE //bin + {"tee", tee_main}, +#endif #ifdef BB_TOUCH //usr/bin {"touch", touch_main}, #endif |