aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-08-08 17:16:08 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-08-08 17:16:08 +0200
commit2c513e352142d1e19340ca2c12beb54657e9254a (patch)
treef0d92a28a9e27616321facda970ceed5ff994a37 /README.md
parent284e1b7a5c4b1b0b0f38d16ecb1507ea4ac964f4 (diff)
downloadcoreutils-2c513e352142d1e19340ca2c12beb54657e9254a.tar.gz
coreutils-2c513e352142d1e19340ca2c12beb54657e9254a.tar.bz2
coreutils-2c513e352142d1e19340ca2c12beb54657e9254a.zip
Added tee
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 8 insertions, 7 deletions
diff --git a/README.md b/README.md
index 2d090f0..0e0f3b9 100644
--- a/README.md
+++ b/README.md
@@ -2,10 +2,11 @@
Rewrite of some core utilities for educational purposes.
-| Name | Description |
-|------------|-------------------------------------------|
-| `mkdir` | make directories |
-| `basename` | strip directory and suffix from filenames |
-| `cut` | remove sections from each line of files |
-| `rm` | remove files or directories |
-| `seq` | print a sequence of numbers |
+| Name | Description |
+|------------|-----------------------------------------------------------------|
+| `mkdir` | make directories |
+| `basename` | strip directory and suffix from filenames |
+| `cut` | remove sections from each line of files |
+| `rm` | remove files or directories |
+| `seq` | print a sequence of numbers |
+| `tee` | read from standard input and write to standard output and files |