blob: 74da1d2066ab140aed95fc2c317c1a6e8b6ea7b2 (
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 |
# TODO
| Name | Description |
|------------|-----------------------------------------------------------------|
| `cut` | remove sections from each line of files |
| `cp` | |
| `chmod` | |
| `chown` | |
| `ln` | |
| `mv` | |
| `touch` | |
| `cat` | |
| `tail` | |
| `tr` | |
| `test` | |
| `shuf` | |
| `sort` | |
| `uniq` | |
| `dirname` | |
| `date` | |
| `du` | |
| `echo` | |
| `expr` | |
|