applets
archival
console-tools
coreutils
libcoreutils
Config.in
Makefile
Makefile.in
basename.c
cal.c
cat.c
chgrp.c
chmod.c
chown.c
chroot.c
cmp.c
comm.c
cp.c
cut.c
date.c
dd.c
df.c
dirname.c
dos2unix.c
du.c
echo.c
env.c
expr.c
false.c
fold.c
head.c
hostid.c
id.c
install.c
length.c
ln.c
logname.c
ls.c
md5_sha1_sum.c
mkdir.c
mkfifo.c
mknod.c
mv.c
nice.c
nohup.c
od.c
printenv.c
printf.c
pwd.c
realpath.c
rm.c
rmdir.c
seq.c
sleep.c
sort.c
stat.c
stty.c
sum.c
sync.c
tail.c
tee.c
test.c
touch.c
tr.c
true.c
tty.c
uname.c
uniq.c
usleep.c
uudecode.c
uuencode.c
watch.c
wc.c
who.c
whoami.c
yes.c
debianutils
docs
e2fsprogs
editors
examples
findutils
include
init
libbb
libpwdgrp
loginutils
miscutils
modutils
networking
patches
procps
scripts
shell
sysklogd
testsuite
util-linux
.cvsignore
.indent.pro
AUTHORS
Config.in
INSTALL
LICENSE
Makefile
README
Rules.mak
TODO
defconfig
30 lines
965 B
C
30 lines
965 B
C
/*
|
|
* echo applet implementation for busybox
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include "busybox.h"
|
|
|
|
extern int echo_main(int argc, char** argv)
|
|
{
|
|
(void)bb_echo(argc, argv);
|
|
bb_fflush_stdout_and_exit(EXIT_SUCCESS);
|
|
}
|