Skip to content

Commit

Permalink
README.md escape '|' in code
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchpaulus committed Nov 14, 2024
1 parent e1fe1f9 commit 40bfeaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Best way to understand purpose and syntax of `mshell` is to see it in action. He

| Objective | `sh` | `mshell` |
|-----------|-----|----------|
| Print the number of files in the current directory | `ls | wc -l` | `* glob len wl` |
| `find`/`xargs` | `find . -t x -name '*.sh' -print0 | xargs -0 mycommand` | `[mycommand [find . -t x -name "*.sh"]]o;` |
| Print the number of files in the current directory | `ls \| wc -l` | `* glob len wl` |
| `find`/`xargs` | `find . -t x -name '*.sh' -print0 \| xargs -0 mycommand` | `[mycommand [find . -t x -name "*.sh"]]o;` |

# TODO

Expand Down

0 comments on commit 40bfeaa

Please sign in to comment.