| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Correct a usage of fnctl that could not be right and results in a | nectar | 2002-09-11 | 1 | -1/+1 |
* | Add <stdlib.h> to get a prototype for exit(). | keramida | 2002-08-29 | 1 | -0/+1 |
* | Replace various spellings with FALLTHROUGH which is lint()able | charnier | 2002-08-25 | 2 | -2/+2 |
* | There is a built-in command called "builtin"; spell its name correctly | tjr | 2002-08-24 | 1 | -1/+1 |
* | Don't show the process ID of background jobs that have terminated, | tjr | 2002-08-24 | 1 | -1/+1 |
* | s/filesystem/file system/ as discussed on -developers | trhodes | 2002-08-21 | 2 | -3/+3 |
* | Fix a few typos, among them s/builtin/built-in/ (except for the ref | schweikh | 2002-08-21 | 1 | -36/+36 |
* | Avoid accessing the current job's process table in the child part of | tjr | 2002-08-18 | 1 | -3/+5 |
* | Show job control ID, command text, etc. when foreground processes are | tjr | 2002-08-17 | 1 | -7/+2 |
* | Allow redirections by themselves between "&&" and "||" operators. | tjr | 2002-08-11 | 1 | -3/+2 |
* | mdoc(7) police: tidying. | ru | 2002-08-09 | 1 | -36/+9 |
* | Add a -P/-o physical option which behaves similarly to bash/ksh's options | tjr | 2002-07-25 | 3 | -4/+17 |
* | Set opterr to zero to avoid duplicate warnings from getopt(3) for unknown | tjr | 2002-07-25 | 5 | -2/+6 |
* | Use PATH_MAX instead of a local guess at it, which happened to be incorrect. | tjr | 2002-07-25 | 1 | -4/+3 |
* | pwdcmd()'s argc and argv arguments are no longer unused, remove __unused. | tjr | 2002-07-25 | 1 | -1/+1 |
* | Avoid calling el_resize() from a signal handler, even though libedit | tjr | 2002-07-24 | 3 | -2/+11 |
* | Catch SIGWINCH in interactive shells and call el_resize() to update | tjr | 2002-07-23 | 1 | -0/+15 |
* | Call el_source() to read the contents of .editrc when line editing is enabled. | tjr | 2002-07-23 | 1 | -0/+1 |
* | Add a `bind' builtin command, which is simply a wrapper around libedit's | tjr | 2002-07-23 | 4 | -0/+24 |
* | Don't allow "||" or "&&" to be the first tokens of a command. | tjr | 2002-07-22 | 1 | -0/+1 |
* | Implement the P1003.2 `command' builtin command, which is used to suppress | tjr | 2002-07-21 | 4 | -4/+78 |
* | Document that only one of the -n and -e options may be specified for | tjr | 2002-07-20 | 1 | -1/+11 |
* | Remove broken and incomplete support for old releases of System V, | tjr | 2002-07-19 | 7 | -236/+1 |
* | Don't assume file descriptors fit in a short, use an int instead. | tjr | 2002-07-18 | 1 | -1/+1 |
* | Avoid using ints or shorts to store process id's, use pid_t instead. | tjr | 2002-07-18 | 2 | -22/+23 |
* | Make the message that is printed when the foreground process is terminated | tjr | 2002-07-18 | 2 | -2/+24 |
* | Don't assume the shell's controlling terminal is attached to file descriptor | tjr | 2002-07-11 | 1 | -8/+27 |
* | Remove support for the "old" tty driver by unifdef -UOLD_TTY_DRIVER; | tjr | 2002-07-11 | 1 | -40/+0 |
* | When growing the job table, don't relocate the jobmru pointer if it's NULL. | tjr | 2002-07-11 | 1 | -1/+2 |
* | Close file descriptors when [n]>&- and [n]<&- redirections are used. | tjr | 2002-07-09 | 1 | -1/+2 |
* | Print out commands with NTOFD/NFROMFD redirections that close the | tjr | 2002-07-09 | 2 | -2/+8 |
* | Fix type-o in last commit in preparation for MFC. | dillon | 2002-07-02 | 1 | -1/+1 |
* | Consistently use FBSDID | obrien | 2002-06-30 | 24 | -48/+48 |
* | Document addition of RLIMIT_VMEM support, added in rev 1.26 of miscbltin.c. | sheldonh | 2002-06-27 | 1 | -1/+3 |
* | Add support for RLIMIT_VMEM. The #ifdef's were already there but getopt() | dillon | 2002-06-26 | 1 | -1/+1 |
* | Remove two unused variables. | jmallett | 2002-06-20 | 1 | -2/+0 |
* | Minor const cleanup. | jmallett | 2002-06-20 | 2 | -4/+4 |
* | Bring documentation on CDPATH and its effects on cd(1) back into sync with | tjr | 2002-06-19 | 1 | -4/+6 |
* | Don't list shell builtins when the hash command is used (SUSv3) | tjr | 2002-06-13 | 1 | -1/+2 |
* | Document the -f and -v options of the unset builtin. | tjr | 2002-06-06 | 1 | -5/+15 |
* | Quote the output of the no-argument form of the `set' builtin for re-input | tjr | 2002-06-06 | 1 | -2/+8 |
* | Add the SUSv3 -p ("portable") option to both the export and readonly | tjr | 2002-06-06 | 2 | -3/+47 |
* | Don't modify output that is to be quoted if it contains no IFS characters | tjr | 2002-06-06 | 1 | -0/+7 |
* | Display job status correctly when a pipeline is suspended. | tjr | 2002-06-04 | 1 | -6/+8 |
* | Describe finished jobs as "Done", not "Exit" (SUSv3) | tjr | 2002-06-04 | 1 | -1/+5 |
* | Don't output `state' and `current' fields for processes that aren't | tjr | 2002-06-04 | 1 | -3/+5 |
* | Missing prototypes from previous commit. | tjr | 2002-06-04 | 1 | -0/+3 |
* | Correct minor spacing problem in output of jobs -l for pipelines. | tjr | 2002-06-04 | 1 | -1/+1 |
* | Quote alias values in the output of the alias(1) builtin so they are | tjr | 2002-06-04 | 3 | -5/+44 |
* | Fix typo causing ``fc -e'' to not work correctly. getopt() sets optarg, | tjr | 2002-06-02 | 1 | -1/+1 |