about summary refs log tree commit diff stats
path: root/shell/README.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-06-18 07:11:36 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-06-18 07:11:36 -0700
commitc22dbbea3960ffbcf983f6ac2d1b0daf9d294461 (patch)
tree16afc1ff9fdff8223bb2181d4f4344e39062d026 /shell/README.md
parent8c47da082b63b6aa6aafd45e1f8f7edd4459e555 (diff)
downloadmu-c22dbbea3960ffbcf983f6ac2d1b0daf9d294461.tar.gz
make code in Readme easier to copy
Thanks Sumeet Agarwal for the suggestion.
Diffstat (limited to 'shell/README.md')
-rw-r--r--shell/README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/README.md b/shell/README.md
index 072e9d60..6bde168b 100644
--- a/shell/README.md
+++ b/shell/README.md
@@ -5,12 +5,12 @@ Currently runs a tiny dialect of Lisp. Steps to run it from the top-level:
 1. Build it:
 
   ```sh
-  $ ./translate shell/*.mu      # generates code.img
+  ./translate shell/*.mu      # generates code.img
   ```
 
   You can now already run it (under emulation):
   ```sh
-  $ qemu-system-i386 code.img
+  qemu-system-i386 code.img
   ```
 
   But let's add some more 'meat' to play with.
@@ -18,13 +18,13 @@ Currently runs a tiny dialect of Lisp. Steps to run it from the top-level:
 2. Create a data disk with a library of functions.
 
   ```sh
-  $ dd if=/dev/zero of=data.img count=20160
-  $ cat shell/data.limg |dd of=data.img conv=notrunc
+  dd if=/dev/zero of=data.img count=20160
+  cat shell/data.limg |dd of=data.img conv=notrunc
   ```
 
   Run with data disk (and 2GB of RAM):
   ```sh
-  $ qemu-system-i386 -m 2G -hda code.img -hdb data.img
+  qemu-system-i386 -m 2G -hda code.img -hdb data.img
   ```
 
   <img alt='screenshot of the Mu shell' src='../html/20210615-shell.png'>
@@ -59,7 +59,7 @@ Currently runs a tiny dialect of Lisp. Steps to run it from the top-level:
   Putting it all together, here's the command I typically use on Linux:
 
   ```
-  $ qemu-system-i386 -m 2G -enable-kvm -hda code.img -hdb data.img
+  qemu-system-i386 -m 2G -enable-kvm -hda code.img -hdb data.img
   ```
 
 *Known issues*