2022-10-01 19:05:39 -04:00
|
|
|
Write a function to return a dictionary containing key-value pairs
|
|
|
|
describing command line parameters
|
2022-10-01 14:38:29 -04:00
|
|
|
Write a Makefile. [done]
|
2021-11-21 15:37:11 -05:00
|
|
|
Add octal escape support to echo.
|
2022-10-01 14:38:29 -04:00
|
|
|
Rework yes(1) to buffer output. This achieves greater throughput per system call.
|
2022-10-02 01:34:14 -04:00
|
|
|
Rewrite the buffering in cat(1) to use setvbuf
|
2021-11-21 15:37:11 -05:00
|
|
|
|
2022-10-01 14:38:29 -04:00
|
|
|
-----------------------------------------------------
|
|
|
|
PROGS
|
|
|
|
_____________________________________________________
|
|
|
|
Simple commands (only a handful of parameters at most, with simple premises)
|
|
|
|
-sleep [done]
|
|
|
|
-true [done]
|
|
|
|
-yes [done]
|
|
|
|
-basename/dirname
|
|
|
|
-echo [in-progress, SUS]
|
2022-10-18 12:47:34 -04:00
|
|
|
-wc [done]
|
2022-10-01 14:38:29 -04:00
|
|
|
-tee
|
|
|
|
-cat [done]
|
|
|
|
-pwd
|
|
|
|
-cksum
|
|
|
|
-cal
|
|
|
|
|
2022-10-18 12:47:34 -04:00
|
|
|
Filesystem interfaces
|
2022-10-01 14:38:29 -04:00
|
|
|
-rm
|
|
|
|
-mv
|
|
|
|
-cp
|
|
|
|
-mkdir
|
|
|
|
-rmdir
|
|
|
|
-chgrp
|
|
|
|
-chown
|
|
|
|
-chmod
|
|
|
|
-mkfifo
|
|
|
|
-mknod
|
|
|
|
-touch
|
|
|
|
-ln
|
|
|
|
-link(?)
|
|
|
|
-ls
|
|
|
|
-find
|
|
|
|
-file
|
|
|
|
|
|
|
|
Filters
|
|
|
|
-sed
|
|
|
|
-nl
|
|
|
|
-tr
|
|
|
|
-expand/unexpand
|
|
|
|
-fold
|
|
|
|
-head/tail
|
|
|
|
-sort
|
|
|
|
-grep
|
|
|
|
-uniq
|
|
|
|
-cut
|
|
|
|
-paste
|
|
|
|
-csplit
|
|
|
|
-iconv
|
|
|
|
|
|
|
|
Sorting, searching and testing
|
|
|
|
-test
|
|
|
|
-cmp
|
|
|
|
-comm
|
|
|
|
-diff
|
|
|
|
-tsort
|
|
|
|
-du
|
|
|
|
-df
|
|
|
|
-join
|
|
|
|
-split
|
|
|
|
|
|
|
|
System interfaces
|
|
|
|
-uname
|
|
|
|
-tput
|
|
|
|
-who
|
|
|
|
-ps
|
|
|
|
-kill
|
|
|
|
-renice
|
|
|
|
-nice
|
|
|
|
-newgrp
|
|
|
|
-pathchk
|
|
|
|
-fuser
|
|
|
|
-id
|
|
|
|
-tabs
|
|
|
|
-lp
|
|
|
|
-locale
|
|
|
|
-localedef
|
|
|
|
-at/atd
|
|
|
|
-batch
|
|
|
|
-crond
|
|
|
|
-crontab
|
|
|
|
-logname
|
|
|
|
|
|
|
|
Binary utilities
|
|
|
|
-ar
|
|
|
|
-tar
|
|
|
|
-pax
|
|
|
|
-od
|
|
|
|
-dd
|
|
|
|
-compress
|
|
|
|
-expand
|
|
|
|
-strings
|
|
|
|
|
|
|
|
Interactive utilities
|
|
|
|
-ed
|
|
|
|
-bc
|
|
|
|
-sh
|
|
|
|
|
|
|
|
Miscellaneous
|
|
|
|
-xargs
|
|
|
|
-mesg [maybe]
|
|
|
|
-write [maybe]
|
|
|
|
-printf
|
|
|
|
-expr
|