Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-08-23 | Add a CAVEATS section explaining that a hard link cannot be made to a file | Aaron Campbell | |
flagged immutable or append-only; pjanzen@ ok | |||
2001-08-23 | fix a typo; tim@robbins.dropbear.id.au | Peter Valchev | |
2001-08-13 | Typo in comments: 'interuptable' => 'interruptible' | Heikki Korpela | |
millert@ ok | |||
2001-08-13 | Document how to remove or rename a file that is a getopt(3) flag | Heikki Korpela | |
to mv(1) or rm(1) by preceding it with --. From ho@: Also give a sample of the ./-f way that is more portable ok millert@, ho@ | |||
2001-08-10 | Address PR 1993. This rewording has been deemed satisfactory by the | Hugh Graham | |
submitter's reportedly pedantic boss. | |||
2001-08-09 | Actually use the statf function pointer which I missed while hand-patching. | Todd C. Miller | |
Also, don't mention the -h and -n flags for the 2nd usage line since they are no-ops in that case. | |||
2001-08-09 | Add -h flag to prevent following a symlink to a dir as the dest. | Todd C. Miller | |
Also add -n as an alias for -h for compat with GNU ln. Patch from Phil.Pennock@globnix.org with minor changes by me. | |||
2001-08-07 | Modify timekeeping in an effort to produce a sane bandwidth measure | Hugh Graham | |
for a short running dd process. Some floating point is used so that microsecond precision can be kept without shortening the off_t excessively. millert says ok. | |||
2001-08-03 | Typo; heko@iki.fi | Aaron Campbell | |
2001-08-02 | pet peeve, insure vs ensure | Hugh Graham | |
insure is to indemnify against some contingency ensure is to make sure | |||
2001-07-31 | Documentation fixes per PR 1979 by Kaspar Toomik. | Hugh Graham | |
2001-07-20 | we don't like: | Mike Pechkin | |
o) .Pp before/after .Sh; o) .Pp before/after .Rs/.Re; o) .Nm without argument in SYNOPSIS; | |||
2001-07-19 | Back out last change, it caused problems with exit vals. | Todd C. Miller | |
2001-07-17 | Add a safe_print() function that uses vis(3) if output is a tty. | Todd C. Miller | |
Uses the vis C-style mode which is consistent with what GNU tar does (though GNU tar does vis(3) regardless of whether output is a tty). It may make sense to add a flag to force vis(3)ification like ls does but I have not done that here as I'm reticent to add more flags. | |||
2001-07-17 | make file-completion work with ~ (tilde) | Camiel Dobbelaar | |
tested by provos@ and me | |||
2001-07-09 | Compute %used in -P mode as a double, just like we do in normal printing | Todd C. Miller | |
mode. Fixes an int wraparound problem noted by mike@erdelynet.com | |||
2001-07-09 | correct type on last arg to execl(); nordin@cse.ogi.edu | Theo de Raadt | |
2001-07-09 | correct type on last arg to execl(); nordin@cse.ogi.edu | Theo de Raadt | |
2001-07-09 | -Wall | Theo de Raadt | |
2001-07-05 | Fix length type. | Marc Espie | |
2001-07-05 | Fix prototypes | Marc Espie | |
2001-07-04 | Eat backslashes in regex's so things like: | Todd C. Miller | |
-s '/\/bin\/cat/\/bin\/dog/' work. This means we have to be a bit more clever in finding the pattern delimeters (ie: not strchr). | |||
2001-07-04 | Fix -s option, which never worked. We need to pass in the input string | Todd C. Miller | |
to resub() so we can copy the non-matching portion of the string to the destination. Closes PR #1889 | |||
2001-07-03 | Merge in pdksh-5.2.14-patches.2 to fix some problems with propagated | Todd C. Miller | |
return values in multi-command lines. | |||
2001-06-27 | UVM is no longer an option | Artur Grabowski | |
2001-06-26 | really use strlcpy. | lebel | |
2001-06-26 | really use strlcpy vs strncpy+a[len-1]='\0' | lebel | |
2001-06-26 | use strlcpy vs strncpy+a[len-1]='\0' | lebel | |
2001-06-26 | use strlcpy vs strncpy+a[len-1]='\0' | lebel | |
2001-06-25 | unsmoke drugs. | Artur Grabowski | |
2001-06-25 | had not noticed the atexit() handler; pointed out by dima@unixfreak.org; ↵ | Theo de Raadt | |
also use writev to increase atomicity | |||
2001-06-25 | fix obvious warnings. | Artur Grabowski | |
2001-06-25 | explicit braces to avoid ambiguous else | Artur Grabowski | |
2001-06-25 | implement 'stty ek' as documented; dima@unixfreak.org | Todd C. Miller | |
2001-06-23 | more .%A handling; bk@rt.fm | Theo de Raadt | |
2001-06-23 | ok, tmac is now fixed | Theo de Raadt | |
2001-06-23 | join .%A entries; most by bk@rt.fm | Theo de Raadt | |
2001-06-22 | exit() from a signal handler is a sin | Theo de Raadt | |
2001-06-22 | do not exit() from signal handler | Theo de Raadt | |
2001-06-22 | Avoid printing warnings about things like "is a directory" twice. | Todd C. Miller | |
Found by fgs. | |||
2001-06-22 | mark signal races, and remove junk | Theo de Raadt | |
2001-06-13 | exit(errs) -> exit(errs!=0); sync with scp.c, ok deraadt@ | Markus Friedl | |
2001-06-13 | va_start/end for every call to vfprintf and friends, from scp.c | Markus Friedl | |
2001-06-08 | Correct STANDARDS section wrt removing directories; from FreeBSD | Todd C. Miller | |
2001-06-08 | Don't give usage warning for 'rm -f' with no files to remove to be | Todd C. Miller | |
consistent with other implementations. | |||
2001-06-06 | In -p mode, set directory times in post-order pass since otherwise the | Todd C. Miller | |
times get squashed when we add files to the dir. Problem found by Christophe.Deroulers@ens.fr, fix by me. | |||
2001-06-03 | Nope, that's not right either. Fix check for mutually exclusive args. | Todd C. Miller | |
2001-06-03 | sync man page with new usage restrictions | Todd C. Miller | |
2001-06-03 | Obvious thinko: command line is wrong if it's too short, not too long. | Marc Espie | |
2001-06-03 | Use kern.nprocs | Angelos D. Keromytis | |