diff options
Diffstat (limited to 'software/coreutils.md')
| -rw-r--r-- | software/coreutils.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/software/coreutils.md b/software/coreutils.md new file mode 100644 index 0000000..d16f188 --- /dev/null +++ b/software/coreutils.md @@ -0,0 +1,39 @@ +# Coreutils Clone + +Minimalist coreutils implementation in C. It contains only the functions that I actually use in each program, for better or for worse. In a way, it is inspired by Plan 9's implementations, which are much simpler than Gnu's. + +To-Do: +- [x] echo +- [ ] cat (marked undone because of SERIOUS FATAL FLAW that I need to fix) +- [x] tac +- [x] head +- [x] tail +- [x] touch +- [ ] cp +- [ ] dd +- [ ] df +- [ ] dir +- [ ] ln +- [ ] ls +- [ ] mkdir +- [ ] mv +- [ ] rm +- [ ] rmdir +- [ ] base32 +- [ ] base64 +- [ ] wc +- [ ] arch +- [ ] basename +- [ ] date +- [ ] du +- [ ] false +- [ ] pwd +- [ ] true +- [ ] whoami +- [ ] yes +- [ ] less +- [ ] more +- [ ] ascii +- [ ] awk +- [ ] grep +- [ ] cd |
