note slow terminal in ed

This commit is contained in:
2026-04-19 01:47:14 +02:00
parent cfb1177928
commit 8fcc8c67bf

View File

@@ -8,6 +8,21 @@ You would type a command to the computer, and it would type out any errors.
It would not waste paper, ink, and time by typing out `COMMAND RUN SUCCESSFULLY` after each command. It would not waste paper, ink, and time by typing out `COMMAND RUN SUCCESSFULLY` after each command.
A silent machine meant a happy machine. A silent machine meant a happy machine.
To fully appreciate `ed`, you can slow down your terminal with the following command:
```sh
ff=/tmp/bashpipe
mkfifo $ff
( cat $ff | perl -We 'use Time::HiRes;$|++;while(read(STDIN,$c,1)){Time::HiRes::usleep(15000);print $c;}' ) & exec &> $ff
```
Try running `dir` and `dir -F`!
Okay, now onto `ed`...
# Basic Usage # Basic Usage
Open a file: Open a file: