aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: e6a4a746cf80d418809c4b58406c0f85d63c32c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# coreutils

Rewrite of some core utilities for educational purposes.

| Name       | Description                                                      |
|------------|----------------------------------------------------------------- |
| `mkdir`    | make directories                                                 |
| `basename` | strip directory and suffix from filenames                        |
| `rm`       | remove files or directories                                      |
| `seq`      | print a sequence of numbers                                      |
| `tee`      | read from standard input and write to standard output and files  |
| `shuf`     | generate random permutations                                     |

# TODO

| Name       | Description |
|------------|-----------------------------------------------------------------|
| `cut`      | remove sections from each line of files                         |
| `cp`       | |
| `chmod`    | |
| `chown`    | |
| `ln`       | |
| `mv`       | |
| `touch`    | |
| `cat`      | |
| `tail`     | |
| `tr`       | |
| `test`     | |
| `sort`     | |
| `uniq`     | |
| `dirname`  | |
| `date`     | |
| `du`       | |
| `echo`     | |
| `expr`     | |