aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-07-14 19:08:11 +0200
committerJohn Ankarström <john@ankarstrom.se>2021-07-14 19:08:11 +0200
commita2558ca046ceb85bac62cee7d1d34ab660955dc0 (patch)
tree9b3a436c9046976bc704ecbd037ce1632e6f5632
parentfe9ba4f8f3c8b114aa32d81fefdc2cd1f4642600 (diff)
downloadrtty-a2558ca046ceb85bac62cee7d1d34ab660955dc0.tar.gz
rio.c: Automatically set TERM, PAGER and EDITOR
-rw-r--r--rio.c2
-rwxr-xr-xrtty2
2 files changed, 3 insertions, 1 deletions
diff --git a/rio.c b/rio.c
index 88ef214..a36af2b 100644
--- a/rio.c
+++ b/rio.c
@@ -20,6 +20,8 @@ main()
if(!(fdout = open("/var/tmp/r.out", O_RDONLY)))
err(1, "open");
+ dprintf(fdin, "export TERM=tty43 PAGER=cat EDITOR=ed\n");
+
FD_ZERO(&rfds0);
FD_ZERO(&rfds1);
diff --git a/rtty b/rtty
index 3050280..f6b6296 100755
--- a/rtty
+++ b/rtty
@@ -1,6 +1,6 @@
#!/bin/sh
-# rtty -- limited, but more responsive remote shell
+# rtty -- limited but responsive remote shell
in=/var/tmp/r.in
out=/var/tmp/r.out