15 lines
404 B
Bash
15 lines
404 B
Bash
#!/usr/bin/zsh
|
|
# Create a layout for development on the PDP-10
|
|
RPDP=$(where rpdp)
|
|
|
|
# Split the window at the bottom and open a
|
|
$MUX split-window -v -l 8 -t ${SESSIONID}:0 telnet pidp10.local 1025
|
|
|
|
# Split again, and connect via ssh to the host machine
|
|
$MUX split-window -h -t ${SESSIONID}:0 ssh pidp10.local
|
|
|
|
# Finally, start an instance of the Knight-TV console
|
|
if [[ -v RPDP ]]; then
|
|
$RPDP tvcon
|
|
fi
|