# 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` | |