summaryrefslogtreecommitdiff
path: root/Userland/sh.cpp
AgeCommit message (Expand)Author
2019-02-05Kernel: Reading from a slave PTY should give EOF if master PTY is closed.Andreas Kling
2019-02-03LibC: Implement various things to get GNU bc building and running.Andreas Kling
2019-01-31Big, possibly complete sweep of naming changes.Andreas Kling
2019-01-30Add a /dev/pts filesystem and make PTY allocation dynamic.Andreas Kling
2019-01-25sh: Discard the current line on interrupt.Andreas Kling
2019-01-25Terminal: Support VKILL and VERASE. Also ignore null characters.Andreas Kling
2019-01-25sh: Support basic backspacing on the command line.Andreas Kling
2019-01-25Terminal: Support setting the window title using Xterm escape sequences.Andreas Kling
2019-01-23LibC: Tweak execvp() and execve() prototypes.Andreas Kling
2018-12-07sh: Restore termios after a child process exits.Andreas Kling
2018-12-03Yet more coding style fixes.Andreas Kling
2018-11-17Various stubs while trying to get an old coreutils to build.Andreas Kling
2018-11-13Reduce kmalloc() traffic in directory iteration.Andreas Kling
2018-11-11Rage hacking to get bash to run. It finally runs. So cool! :^)Andreas Kling
2018-11-10Add /proc/PID/cwd, a symlink to the process's current directory.Andreas Kling
2018-11-09Move <utsname.h> to <sys/utsname.h> for correctness.Andreas Kling
2018-11-09Get rid of redundant sys$spawn now that we have fork+exec.Andreas Kling
2018-11-09Fix all current build warnings in the userland.Andreas Kling
2018-11-08Add a VMO pointer to VNode.Andreas Kling
2018-11-08Support basic mmap'ing of a file!Andreas Kling
2018-11-08Add some simple write buffering to LibC's stdio.Andreas Kling
2018-11-07Get rid of the undertaker and have waitpid() be the reaper.Andreas Kling
2018-11-07Implement sending signals to blocked-in-kernel processes.Andreas Kling
2018-11-07Signals to processes in userspace now work again.Andreas Kling
2018-11-06Add some basic signal support.Andreas Kling
2018-11-03Map pages in read-only ELF sections as non-writable.Andreas Kling
2018-11-03Fix some bugs in execve() and make sh use it for process launching.Andreas Kling
2018-11-03Implemented sys$execve().Andreas Kling
2018-11-02Implement fork()!Andreas Kling
2018-11-02Basic ^C interrupt implementation.Andreas Kling
2018-11-02Add tcsetpgrp()+tcgetpgrp().Andreas Kling
2018-11-02Start working on sessions and process groups.Andreas Kling
2018-11-01Have sh print out which signal terminated a child process.Andreas Kling
2018-10-31Add a /bin/tty command that prints the current tty.Andreas Kling
2018-10-31Add SpinLock to IDE disk access.Andreas Kling
2018-10-31Snazz up the sh prompt a bit. Add the current tty to it.Andreas Kling
2018-10-30Add sys$ttyname_r and ttyname_r() + ttyname().Andreas Kling
2018-10-30sh should read from fd 0 (stdin) instead of /dev/keyboard.Andreas Kling
2018-10-30Virtual consoles kinda work!Andreas Kling
2018-10-30Implement sys$getcwd properly.Andreas Kling
2018-10-29Fix broken SpinLock.Andreas Kling
2018-10-28Add basic symlink support.Andreas Kling
2018-10-28Add /proc/mm and a /bin/mm utility that just dumps it.Andreas Kling
2018-10-28Canonicalize the path used by sh.Andreas Kling
2018-10-28Give the shell a nice, colorful prompt.Andreas Kling
2018-10-27Implement waitpid() support for getting the waitee's exit code.Andreas Kling
2018-10-26Properly null-terminate the argv list created by sh.Andreas Kling
2018-10-26Implement sys$chdir() and teach sh+ls to cd around and browse different dirs.Andreas Kling
2018-10-26Implement argc/argv support for spawned tasks.Andreas Kling
2018-10-25Implement errno in LibC.Andreas Kling