Updated Using Davex (markdown)

David Schmidt 2020-08-01 19:17:12 -04:00
parent 045115c84c
commit 968db539ac

@ -1,5 +1,3 @@
# Using Davex
When you enter Davex, you see (in 80 columns if your system supports it):
```
Davex vX.XX
@ -426,13 +424,13 @@ cp copy
e echo
Explanation: "e" stands for "echo", which prints the strings you feed it (useful from "exec" files).
`ej eject`<br>
`ej eject`
Explanation: "ej" stands for "eject", which ejects 3.5" disks from their drives.
`print > &;`<br>
`print > &;`
Explanation: "print" stands for redirecting output to the printer, and the semicolon between commands is included in the alias, so you don't need to type one when you use it. Example: "print help rename", or "print cat -t", but NOT "print filename".
`page > &;cls`<br>
`page > &;cls`
Explanation: "page" does a clear-screen after sending output to the printer. Result: the printer advances to the top of the page.