aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-08-23 20:09:42 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-08-23 20:09:42 +0200
commita1824752a0606ec1a4c4d995624133128cbac61a (patch)
treec1063ebfe41d692acc6753ef4b97526215637bbd /README.md
parent8cf1635366eed1e760b317a401c0a4748ee4befe (diff)
downloadcoreutils-a1824752a0606ec1a4c4d995624133128cbac61a.tar.gz
coreutils-a1824752a0606ec1a4c4d995624133128cbac61a.tar.bz2
coreutils-a1824752a0606ec1a4c4d995624133128cbac61a.zip
Added echo
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 10 insertions, 5 deletions
diff --git a/README.md b/README.md
index e6a4a74..11ca0f7 100644
--- a/README.md
+++ b/README.md
@@ -10,26 +10,31 @@ Rewrite of some core utilities for educational purposes.
| `seq` | print a sequence of numbers |
| `tee` | read from standard input and write to standard output and files |
| `shuf` | generate random permutations |
+| `echo` | display a line of text |
-# TODO
+## Pending
| Name | Description |
|------------|-----------------------------------------------------------------|
| `cut` | remove sections from each line of files |
+| `uniq` | report or omit repeated lines |
+| `tr` | translate or delete characters |
+| `chown` | change file owner and group |
+
+## TODO
+
+| Name | Description |
+|------------|-----------------------------------------------------------------|
| `cp` | |
| `chmod` | |
-| `chown` | |
| `ln` | |
| `mv` | |
| `touch` | |
| `cat` | |
| `tail` | |
-| `tr` | |
| `test` | |
| `sort` | |
-| `uniq` | |
| `dirname` | |
| `date` | |
| `du` | |
-| `echo` | |
| `expr` | |