blob: 0e0f3b9840354a5d13bda09399b342f9027040b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# coreutils
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 |
| `tee` | read from standard input and write to standard output and files |
|