Skip to content

Commit

Permalink
More README
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchpaulus committed Dec 10, 2024
1 parent 3e31c0d commit 00469da
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ wt ((toFloat abs str) map wjoin wl) each
|-----------|-----|----------|
| 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;` |
| `head` | `head -n 10` | .. :10 uw |
| `tail` | `tail -n 10` | .. :-10 uw |
| `wc` | `wc -l` | .. len wl |
| `grep` | `grep 'pattern'` | .. ("pattern" in) filter uw |
| `cut` | `cut -d ';' -f 2` | .. (";" split :1: wl) each |
| `head` | `head -n 10` | `.. :10 uw` |
| `tail` | `tail -n 10` | `.. :-10 uw` |
| `wc` | `wc -l` | `.. len wl` |
| `grep` | `grep 'pattern'` | `.. ("pattern" in) filter uw` |
| `cut` | `cut -d ';' -f 2` | `.. (";" split :1: wl) each` |
# TODO
Expand Down

0 comments on commit 00469da

Please sign in to comment.