grsh/TODO.md

45 lines
882 B
Markdown
Raw Permalink Normal View History

2021-07-21 19:01:35 +00:00
# TODO
## Basic shell features
- [x] Pipelines `|`, done thanks to that [article](https://www.joshmcguigan.com/blog/build-your-own-shell-rust/)
- [ ] `;`
- [ ] AND (`&&`)
- [ ] OR (`||`)
- [ ] > and >>
- [ ] status handling
## Commands
### Builtins
- [x] `cd` - only basics done, need to make arguments
- [x] `exit`
- [x] `:`
- [x] `true`
- [x] `false`
- [x] `pwd`
- [ ] `echo` - basics and some vars done, need to do a lot of other things
- [ ] `type`
- [ ] `command`
- [ ] `alias`
- [ ] `export`
- [ ] and a lot of other
### Not Builtins
- [ ] `mkdir` - only basics, `--help` and `--verbose`
- [ ] `rmdir` - only basics, `--help` and `--verbose`
- [ ] `ls` - just listing dirs and `--help`, `-a` flags, still need fixes about current dir
- [ ] `rm`
2021-07-22 05:30:31 +00:00
- [ ] `touch`
- [ ] `cat`
2021-07-25 09:12:42 +00:00
- [ ] `tac`
2021-07-22 05:30:31 +00:00
- [ ] `grep`
2021-07-22 14:41:16 +00:00
- [ ] `cp`
- [ ] `mv`
- [ ] `head`
- [ ] `tail`
2021-07-25 09:12:42 +00:00
- [x] `yes`
- [ ] `ed`