diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-17 12:06:37 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-17 12:06:37 +0200 |
commit | 369c919f2be8d2c93b990a97436b41ba4ae1ff29 (patch) | |
tree | 8f547c2705e5132fa7f775a1b9d7eca69f9c0840 /test/interactive-helper/mthdcat.cc | |
parent | 7c69574c5bec814cc3cb58701d2beccfe6093add (diff) |
move the interactive helper to a subdirectory of test
Diffstat (limited to 'test/interactive-helper/mthdcat.cc')
-rw-r--r-- | test/interactive-helper/mthdcat.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/interactive-helper/mthdcat.cc b/test/interactive-helper/mthdcat.cc new file mode 100644 index 000000000..25d09a3f5 --- /dev/null +++ b/test/interactive-helper/mthdcat.cc @@ -0,0 +1,20 @@ +/* Usage, mthdcat < cmds | methods/mthd + All this does is cat a file into the method without closing the FD when + the file ends */ + +#include <unistd.h> + +int main() +{ + char Buffer[4096]; + + while (1) + { + int Res = read(STDIN_FILENO,Buffer,sizeof(Buffer)); + if (Res <= 0) + while (1) sleep(100); + if (write(STDOUT_FILENO,Buffer,Res) != Res) + break; + } + return 0; +} |