summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
2001-10-06Fix ``echo foo |dd'' which was broken by the last commit.Todd C. Miller
2001-10-06s/standrad/standard/Niklas Hallqvist
2001-10-04Grammar; also, document the true behaviour of the examples.Paul Janzen
2001-10-04Move check for count=0 into dd's main. We want to do normal setupTodd C. Miller
in this case and just don't want to actually copy any data. Fixes a problem noted by aaron@ where the time portion of the summary would be wrong and also gives us sane behavior when seek is non-zero but count is 0.
2001-10-01skip filenames containing \n; report jdamery@chiark.greenend.org.ukMarkus Friedl
and matthew@debian.org
2001-09-27If kvm_openfiles() fail the systctl() should work.Mike Pechkin
Spotted by: mike <mike@gravitino.net> Patch from millert@
2001-09-24The 'newgrp' alias is explicitly disabled in our ksh, so do not mentionCamiel Dobbelaar
it in the manpage. ok millert@
2001-09-19occured->occurredMike Pechkin
idea from deraadt@ via NetBSD millert@ ok p.s. Next commit will fix a typo in the sys/
2001-09-15Fix typo--have a cow not a monkey; bk@rt.fmTodd C. Miller
2001-09-06install relative symlinks, not absoluteMichael Shalayeff
2001-09-06o) fix bogus .St usage;Mike Pechkin
millert@ ok
2001-09-06o) __progname aria;Mike Pechkin
millert@ ok.
2001-09-05make sure that va_start() has matching va_end()Theo de Raadt
2001-09-02Typo; addresses pr/2038 from tim@robbins.dropbear.id.auAaron Campbell
2001-08-29clear the malloc'd buffer, otherwise source() will leak malloc'd memory; ok ↵Markus Friedl
theo@
2001-08-26remove excess XrTheo de Raadt
2001-08-25OpenBSD doesn't have RLIMIT_VMEM or RLIMIT_SWAP, so we don'tHeikki Korpela
have ulimit -v or -w either. ok millert@
2001-08-23Add a CAVEATS section explaining that a hard link cannot be made to a fileAaron Campbell
flagged immutable or append-only; pjanzen@ ok
2001-08-23fix a typo; tim@robbins.dropbear.id.auPeter Valchev
2001-08-13Typo in comments: 'interuptable' => 'interruptible'Heikki Korpela
millert@ ok
2001-08-13Document how to remove or rename a file that is a getopt(3) flagHeikki 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-10Address PR 1993. This rewording has been deemed satisfactory by theHugh Graham
submitter's reportedly pedantic boss.
2001-08-09Actually 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-09Add -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-07Modify timekeeping in an effort to produce a sane bandwidth measureHugh 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-03Typo; heko@iki.fiAaron Campbell
2001-08-02pet peeve, insure vs ensureHugh Graham
insure is to indemnify against some contingency ensure is to make sure
2001-07-31Documentation fixes per PR 1979 by Kaspar Toomik.Hugh Graham
2001-07-20we don't like:Mike Pechkin
o) .Pp before/after .Sh; o) .Pp before/after .Rs/.Re; o) .Nm without argument in SYNOPSIS;
2001-07-19Back out last change, it caused problems with exit vals.Todd C. Miller
2001-07-17Add 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-17make file-completion work with ~ (tilde)Camiel Dobbelaar
tested by provos@ and me
2001-07-09Compute %used in -P mode as a double, just like we do in normal printingTodd C. Miller
mode. Fixes an int wraparound problem noted by mike@erdelynet.com
2001-07-09correct type on last arg to execl(); nordin@cse.ogi.eduTheo de Raadt
2001-07-09correct type on last arg to execl(); nordin@cse.ogi.eduTheo de Raadt
2001-07-09-WallTheo de Raadt
2001-07-05Fix length type.Marc Espie
2001-07-05Fix prototypesMarc Espie
2001-07-04Eat 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-04Fix -s option, which never worked. We need to pass in the input stringTodd C. Miller
to resub() so we can copy the non-matching portion of the string to the destination. Closes PR #1889
2001-07-03Merge in pdksh-5.2.14-patches.2 to fix some problems with propagatedTodd C. Miller
return values in multi-command lines.
2001-06-27UVM is no longer an optionArtur Grabowski
2001-06-26really use strlcpy.lebel
2001-06-26really use strlcpy vs strncpy+a[len-1]='\0'lebel
2001-06-26use strlcpy vs strncpy+a[len-1]='\0'lebel
2001-06-26use strlcpy vs strncpy+a[len-1]='\0'lebel
2001-06-25unsmoke drugs.Artur Grabowski
2001-06-25had not noticed the atexit() handler; pointed out by dima@unixfreak.org; ↵Theo de Raadt
also use writev to increase atomicity
2001-06-25fix obvious warnings.Artur Grabowski
2001-06-25explicit braces to avoid ambiguous elseArtur Grabowski