grsh/TODO.md

882 B

TODO

Basic shell features

  • Pipelines |, done thanks to that article
  • ;
  • AND (&&)
  • OR (||)
  • > and >>
  • status handling

Commands

Builtins

  • cd - only basics done, need to make arguments
  • exit
  • :
  • true
  • false
  • 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
  • touch
  • cat
  • tac
  • grep
  • cp
  • mv
  • head
  • tail
  • yes
  • ed