| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-22 | fix -w output | mlelstv | |
| 2014-02-22 | add u option to getopt again. | mlelstv | |
| 2014-02-21 | Add -X (don't cross mount points when recursing) from tls@ | christos | |
| 2014-02-20 | Use .Nm for 'ls'. | wiz | |
| 2014-02-20 | Add -O (only leaf files) and -P (print full path), from tls@ | christos | |
| 2014-02-19 | Remove some pointless inclusions os sys/user.h | dsl | |
| 2014-02-13 | Remove options added in 1.18, commitid: UhxHPgtT2Pzeg4Yw due to some | elric | |
| level of controversy about their inclusion. | |||
| 2014-01-26 | explain why forks fail | christos | |
| 2014-01-20 | Add wctype(3) support to Shell Patterns. | roy | |
| Obtained from FreeBSD. | |||
| 2014-01-15 | Bump date for previous. | wiz | |
| 2014-01-15 | Make ps -s use LTIME instead of TIME in the default output format. | mlelstv | |
| 2014-01-15 | Add an LTIME column that prints lwp cputime. | mlelstv | |
| 2014-01-01 | whitespace fixes | christos | |
| 2014-01-01 | There was a case where \n did not increase plinno | christos | |
| 2014-01-01 | clarify further. | christos | |
| 2014-01-01 | explain the previous fix. | christos | |
| 2013-12-31 | allow case statement without any patterns. | christos | |
| 2013-12-17 | In all man pages that say: | apb | |
| The -H, -L and -P options are ignored unless the -R option is specified. In addition, these options override each other and the command's actions are determined by the last one specified. Add: The default is as if the -P option had been specified. | |||
| 2013-12-11 | Remove entirely bogus /* NOTREACHED */ annotation. | dholland | |
| 2013-12-08 | more complete fix for Coverity issue 976653 | spz | |
| 2013-12-03 | Coverity complaint fixes: | spz | |
| bin/cat/cat.c 976654 Argument cannot be negative (missing check for fileno result, stdout) bin/cat/cat.c 976653 Improper use of negative value (missing check for fileno result, stdin) | |||
| 2013-11-14 | Stop hissing. | wiz | |
| 2013-11-14 | add --gnu for pax. | christos | |
| 2013-11-01 | PR/48312: Dieter Roelands: According to TOG, unset should not return an error | christos | |
| for functions are variables that were not previously set: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html | |||
| 2013-10-30 | #ifdef a variable decl/setting with it's use. | mrg | |
| 2013-10-18 | Fixed unused warnings. | christos | |
| 2013-10-06 | Fix PR bin/48202 [non-critical/low]: | ast | |
| sh +nounset and `for X; do` iteration fails if parameter set empty by applying and testing FreeBSD's patch of Oct 24 2009 for this; see http://svnweb.freebsd.org/base/head/bin/sh/expand.c?r1=198453&r2=198454 Also created an ATF test in tests/bin/sh/t_expand.sh for this error and corrected a space->tabs problem there as well. | |||
| 2013-10-02 | add stdio.h | christos | |
| 2013-10-02 | document LINENO | christos | |
| XXX: someone should fix all the .Ev stuff because some of them are just shell variables .Va and are not really exported to the environment. See the FreeBSD man page. | |||
| 2013-10-02 | add crude $LINENO support for FreeBSD | christos | |
| 2013-09-12 | - print the line discipline using the new ioctl | christos | |
| - print the queue size | |||
| 2013-08-06 | CID 1060854: Wrong sizeof argument (SIZEOF_MISMATCH) | christos | |
| 2013-07-29 | PR/48095: NAKAJIMA Yoshihiro: remove casts from time_t to long | christos | |
| 2013-07-19 | fix error handling. | christos | |
| 2013-07-19 | Sort. | wiz | |
| 2013-07-19 | Add the following options | roy | |
| -A Display the FQDN of each address on all interfaces. -a Display alias name(s) of the host. -d Display the DNS domain. -f Display the FQDN for the hostname. -I Display each IP address on all interfaces. -i Display the IP address(es) for the hostname. | |||
| 2013-07-17 | PR/48057: psi: skip and msgfmt cannot be used together. Looks like a pasto; | christos | |
| fixed. | |||
| 2013-07-16 | WARNS=6 [-Wconversion] | christos | |
| 2013-06-28 | Fix violations of the sequence point rule. | joerg | |
| 2013-06-27 | fix descriptor leaks. PR/47805 | yamt | |
| this fix was taken from FreeBSD SVN rev 199953 (Jilles Tjoelker) ------------------------------------------------------------------------ r199953 | jilles | 2009-11-30 07:33:59 +0900 (Mon, 30 Nov 2009) | 16 lines Fix some cases where file descriptors from redirections leak to programs. - Redirecting fds that were not open before kept two copies of the redirected file. sh -c '{ :; } 7>/dev/null; fstat -p $$; true' (both fd 7 and 10 remained open) - File descriptors used to restore things after redirection were not set close-on-exec, instead they were explicitly closed before executing a program normally and before executing a shell procedure. The latter must remain but the former is replaced by close-on-exec. sh -c 'exec 7</; { exec fstat -p $$; } 7>/dev/null; true' (fd 10 remained open) The examples above are simpler than the testsuite because I do not want to use fstat or procstat in the testsuite. | |||
| 2013-06-12 | constify | yamt | |
| 2013-05-09 | Document that a here-document can finish at an EOF as well as at the | simonb | |
| delimiter. | |||
| 2013-05-04 | test(1): Compare timestamp in nsec scale in -nt/-ot. | uebayasi | |
| 2013-05-02 | remove whitespace from end of file. | zafer | |
| introduced by erh in 1.49 | |||
| 2013-04-28 | Add const. | dholland | |
| 2013-04-26 | Sort sections. | wiz | |
| 2013-04-26 | PR/47770: Eitan Adler: add x flag to rm to avoid cross mount points | christos | |
| 2013-04-03 | Make shifting variables reflect their environment counterparts. Makes | christos | |
| "shift path" work as expected. | |||
| 2013-03-02 | PR/47608: Robert Elz: ``var=value func-call'' does not export var in the | christos | |
| function (+FIX) | |||
| 2013-01-25 | When using -ledit, also use -lterminfo, to allow static linking. | he | |
