File: unbuffer.c

package info (click to toggle)
expect 5.45.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,016 kB
  • sloc: ansic: 17,965; sh: 7,445; tcl: 384; makefile: 191; exp: 10
file content (13 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* unbuffer.c */

#include <stdio.h>
#include "expect.h"

main(argc,argv)
int argc;
char *argv[];
{
	argv++;
	exp_timeout = -1;
	exp_expectl(exp_spawnv(*argv,argv),exp_end);
}