summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
2014-02-22fix -w outputmlelstv
2014-02-22add u option to getopt again.mlelstv
2014-02-21Add -X (don't cross mount points when recursing) from tls@christos
2014-02-20Use .Nm for 'ls'.wiz
2014-02-20Add -O (only leaf files) and -P (print full path), from tls@christos
2014-02-19Remove some pointless inclusions os sys/user.hdsl
2014-02-13Remove options added in 1.18, commitid: UhxHPgtT2Pzeg4Yw due to someelric
level of controversy about their inclusion.
2014-01-26explain why forks failchristos
2014-01-20Add wctype(3) support to Shell Patterns.roy
Obtained from FreeBSD.
2014-01-15Bump date for previous.wiz
2014-01-15Make ps -s use LTIME instead of TIME in the default output format.mlelstv
2014-01-15Add an LTIME column that prints lwp cputime.mlelstv
2014-01-01whitespace fixeschristos
2014-01-01There was a case where \n did not increase plinnochristos
2014-01-01clarify further.christos
2014-01-01explain the previous fix.christos
2013-12-31allow case statement without any patterns.christos
2013-12-17In 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-11Remove entirely bogus /* NOTREACHED */ annotation.dholland
2013-12-08more complete fix for Coverity issue 976653spz
2013-12-03Coverity 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-14Stop hissing.wiz
2013-11-14add --gnu for pax.christos
2013-11-01PR/48312: Dieter Roelands: According to TOG, unset should not return an errorchristos
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-18Fixed unused warnings.christos
2013-10-06Fix 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-02add stdio.hchristos
2013-10-02document LINENOchristos
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-02add crude $LINENO support for FreeBSDchristos
2013-09-12- print the line discipline using the new ioctlchristos
- print the queue size
2013-08-06CID 1060854: Wrong sizeof argument (SIZEOF_MISMATCH)christos
2013-07-29PR/48095: NAKAJIMA Yoshihiro: remove casts from time_t to longchristos
2013-07-19fix error handling.christos
2013-07-19Sort.wiz
2013-07-19Add the following optionsroy
-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-17PR/48057: psi: skip and msgfmt cannot be used together. Looks like a pasto;christos
fixed.
2013-07-16WARNS=6 [-Wconversion]christos
2013-06-28Fix violations of the sequence point rule.joerg
2013-06-27fix descriptor leaks. PR/47805yamt
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-12constifyyamt
2013-05-09Document that a here-document can finish at an EOF as well as at thesimonb
delimiter.
2013-05-04test(1): Compare timestamp in nsec scale in -nt/-ot.uebayasi
2013-05-02remove whitespace from end of file.zafer
introduced by erh in 1.49
2013-04-28Add const.dholland
2013-04-26Sort sections.wiz
2013-04-26PR/47770: Eitan Adler: add x flag to rm to avoid cross mount pointschristos
2013-04-03Make shifting variables reflect their environment counterparts. Makeschristos
"shift path" work as expected.
2013-03-02PR/47608: Robert Elz: ``var=value func-call'' does not export var in thechristos
function (+FIX)
2013-01-25When using -ledit, also use -lterminfo, to allow static linking.he