diff --git a/Using-Davex.md b/Using-Davex.md index 729dd30..5f3cf65 100644 --- a/Using-Davex.md +++ b/Using-Davex.md @@ -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`
+`ej eject` Explanation: "ej" stands for "eject", which ejects 3.5" disks from their drives. -`print > &;`
+`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`
+`page > &;cls` Explanation: "page" does a clear-screen after sending output to the printer. Result: the printer advances to the top of the page.