1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-26 10:12:37 +00:00

Separate DDT cheat sheet.

This commit is contained in:
Lars Brinkhoff
2016-11-22 22:07:04 +01:00
parent 915ba1b42a
commit 44053e9695
3 changed files with 37 additions and 27 deletions

View File

@@ -14,6 +14,8 @@ to operate ITS systems to this day.
See the [`doc` subdirectory](doc) for documentation.
There's a [DDT cheat sheet](doc/DDT.md) for Unix users.
### Building it from scratch
This repository contains source code, tools, and scripts to build ITS

35
doc/DDT.md Normal file
View File

@@ -0,0 +1,35 @@
## DDT cheat sheet for Unix users
To get access to a terminal, first type ^Z (Control-Z). After that,
you can log in.
The `$` character represents typing ESC.
| Unix command | DDT command | Colon command |
| ------------- | -------------------- | ------------------------ |
| login user | user$u | :login user |
| logout | $$u | :logout |
| TERM=vt52 | | :tctyp vt52 |
| TERM=vt100 | | :crtsty vt100 |
| ls | ^F | :listf |
| ls dir | dir^F | :listf dir |
| ls / | ^R m.f.d. (file) | :print m.f.d. (file) |
| more file | ^R file | :print file |
| mkdir dir | ^R dir;..new. (udir) | :print dir;..new. (udir) |
| cd dir | dir$$s | :cwd dir |
| cp f1 f2 | $^R f1,f2 | :copy f1,f2 |
| rm file | ^O file | :delete file |
| ln f1 f2 | $^O f1,f2 | :link f1,f2 |
| mv f1 f2 | $$^O f1,f2 | :rename f1,f2 |
| mv file dir | | :move file,dir |
| emacs | emacs^K | :emacs |
| ps | $$v | :listj |
| kill pid | pid$^X | :job pid :kill |
| sudo -u u cmd | u$^S cmd | |
| top | | :peek |
| ^U | ^D | |
| ^C | ^G | |
| ^Z | ^Z | |
| ^D | ^C | |
| fg | $P | :continue |
| bg | ^P | :proceed |

View File

@@ -13,30 +13,3 @@
- CRTSTY: [manual](info/crtsty.39)
- TCTYP: [manual](_info_/tctyp.order)
- DSKDUMP: [commands](sysdoc/dskdmp.order)
### DDT cheat sheet for Unix users
The `$` character represents typing ESC.
| Unix command | DDT command | Colon command |
| ------------- | -------------------- | ------------------------ |
| login user | user$u | :login user |
| logout | $$u | :logout |
| TERM=vt52 | | :tctyp vt52 |
| TERM=vt100 | | :crtsty vt100 |
| ls | ^F | :listf |
| ls dir | dir^F | :listf dir |
| ls / | ^R m.f.d. (file) | :print m.f.d. (file) |
| more file | ^R file | :print file |
| mkdir dir | ^R dir;..new. (udir) | :print dir;..new. (udir) |
| cd dir | dir$$s | :cwd dir |
| cp f1 f2 | $^R f1,f2 | :copy f1,f2 |
| rm file | ^O file | :delete file |
| ln f1 f2 | $^O f1,f2 | :link f1,f2 |
| mv f1 f2 | $$^O f1,f2 | :rename f1,f2 |
| mv file dir | | :move file,dir |
| emacs | | :emacs |
| ps | $$v | :listj |
| killall -9 id | id$j $^X | :job id :kill |
| sudo -u u cmd | u$^S cmd | |
| top | | :peek |