aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/p.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-04-21 22:37:11 +0000
committerrsc <devnull@localhost>2004-04-21 22:37:11 +0000
commit53db2d0f6bfc971f44183f360f3db5a72edd948a (patch)
tree8b219cc7e666cd924e5eda263698b8263a782727 /src/cmd/p.c
parentf80f53a9424c26f28c8819558541d19cd690a440 (diff)
downloadplan9port-53db2d0f6bfc971f44183f360f3db5a72edd948a.tar.gz
plan9port-53db2d0f6bfc971f44183f360f3db5a72edd948a.tar.bz2
plan9port-53db2d0f6bfc971f44183f360f3db5a72edd948a.zip
why not?
Diffstat (limited to 'src/cmd/p.c')
-rw-r--r--src/cmd/p.c90
1 files changed, 90 insertions, 0 deletions
diff --git a/src/cmd/p.c b/src/cmd/p.c
new file mode 100644
index 00000000..63a9db3f
--- /dev/null
+++ b/src/cmd/p.c
@@ -0,0 +1,90 @@
+#include <u.h>
+#include <libc.h>
+#include <bio.h>
+
+#define DEF 22 /* lines in chunk: 3*DEF == 66, #lines per nroff page */
+
+Biobuf *cons;
+Biobuf bout;
+
+int pglen = DEF;
+
+void printfile(int);
+
+void
+main(int argc, char *argv[])
+{
+ int n;
+ int f;
+
+ if((cons = Bopen("/dev/cons", OREAD)) == 0) {
+ fprint(2, "p: can't open /dev/cons\n");
+ exits("missing /dev/cons");
+ }
+ Binit(&bout, 1, OWRITE);
+ n = 0;
+ while(argc > 1) {
+ --argc; argv++;
+ if(*argv[0] == '-'){
+ pglen = atoi(&argv[0][1]);
+ if(pglen <= 0)
+ pglen = DEF;
+ } else {
+ n++;
+ f = open(argv[0], OREAD);
+ if(f < 0){
+ fprint(2, "p: can't open %s\n", argv[0]);
+ continue;
+ }
+ printfile(f);
+ close(f);
+ }
+ }
+ if(n == 0)
+ printfile(0);
+ exits(0);
+}
+
+void
+printfile(int f)
+{
+ int i, j, n;
+ char *s, *cmd;
+ Biobuf *b;
+
+ b = malloc(sizeof(Biobuf));
+ Binit(b, f, OREAD);
+ for(;;){
+ for(i=1; i <= pglen; i++) {
+ s = Brdline(b, '\n');
+ if(s == 0){
+ n = Blinelen(b);
+ if(n > 0) /* line too long for Brdline */
+ for(j=0; j<n; j++)
+ Bputc(&bout, Bgetc(b));
+ else{ /* true EOF */
+ free(b);
+ return;
+ }
+ }else{
+ Bwrite(&bout, s, Blinelen(b)-1);
+ if(i < pglen)
+ Bwrite(&bout, "\n", 1);
+ }
+ }
+ Bflush(&bout);
+ getcmd:
+ cmd = Brdline(cons, '\n');
+ if(cmd == 0 || *cmd == 'q')
+ exits(0);
+ cmd[Blinelen(cons)-1] = 0;
+ if(*cmd == '!'){
+ if(fork() == 0){
+ dup(Bfildes(cons), 0);
+ execl("/bin/rc", "rc", "-c", cmd+1, 0);
+ }
+ waitpid();
+ goto getcmd;
+ }
+ }
+}