Convert the command to a web server
$ viewb <COMMAND> <ARGS>
Option:
-p=<PORT>: Port(default:8080)
-h: Prints the first N lines.if minus value then prints the last N lines.
-o: Open web browser
-user=<USERNAME>: Basic Authentication user name
-pass=<PASSWORD>: Basic Authentication password
-e=<ENCODING>: input encoding
or
Build yourself (Go lang).
go install github.com/kurehajime/viewb@latest
$ viewb -p 8080 ls -la
https://localhost:8080
Stop: Ctrl+C
Open in browser https://localhost:8080
total 32
drwxr-xr-x 6 user staff 204 8 6 20:19 .
drwx------+ 11 user staff 374 8 6 20:17 ..
-rw-r--r--@ 1 user staff 6148 8 6 20:19 .DS_Store
-rw-r--r-- 1 user staff 5 8 6 20:18 Untitled-1.txt
-rw-r--r-- 1 user staff 1557 8 6 20:19 Untitled-2.txt
drwxr-xr-x 2 user staff 68 8 6 20:19 test
$ viewb ./HelloworldAndPingOne.sh
https://localhost:8080
Stop: Ctrl+C
Open in browser https://localhost:8080
Hello World!
PING 8.8.8.8 (8.8.8.8): 56 data bytes
64 bytes from 8.8.8.8: icmp_seq=0 ttl=54 time=60.380 ms
--- 8.8.8.8 ping statistics ---
1 packets transmitted, 1 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 60.380/60.380/60.380/0.000 ms
$ viewb -user laputa -pass balse echo booomb!
https://localhost:8080
Stop: Ctrl+C
Open in browser https://localhost:8080
And login.
$ viewb -o echo yah!
https://localhost:8080
Stop: Ctrl+C
Open automatically.