diff options
| author | rsc <devnull@localhost> | 2004-03-26 01:59:35 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2004-03-26 01:59:35 +0000 |
| commit | be22ae2d0729f68672e3202c91cfe13c9e74cccc (patch) | |
| tree | b7bc9f9c1e8d3b221adc82f055f8be19ef25d0e6 /src/cmd/9term/rcstart.c | |
| parent | 4e3a2cc1f96f4479f951958f9ca1860f57a0771b (diff) | |
| download | plan9port-be22ae2d0729f68672e3202c91cfe13c9e74cccc.tar.gz plan9port-be22ae2d0729f68672e3202c91cfe13c9e74cccc.zip | |
SunOS can rot in hell.
Diffstat (limited to 'src/cmd/9term/rcstart.c')
| -rw-r--r-- | src/cmd/9term/rcstart.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cmd/9term/rcstart.c b/src/cmd/9term/rcstart.c index df187827..a6a72fe6 100644 --- a/src/cmd/9term/rcstart.c +++ b/src/cmd/9term/rcstart.c @@ -35,7 +35,12 @@ rcstart(int argc, char **argv, int *pfd) dup(sfd, 0); dup(sfd, 1); dup(sfd, 2); - system("stty tabs -onlcr -echo erase ^h intr ^?"); +// system("stty tabs -onlcr -echo erase '^h' intr '^?'"); + system("echo tabs; stty tabs"); + system("echo onlcr; stty -onlcr"); + system("echo echo; stty -echo"); + system("echo erase; stty erase '^h'"); + system("echo intr; stty intr '^?'"); execvp(argv[0], argv); fprint(2, "exec %s failed: %r\n", argv[0]); _exits("oops"); |
