summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
1997-02-27fix pr system/124, reported by Janjaap van Velthooven (janjaap@stack.nl).michaels
1997-02-25Better fix for -p and links.Todd C. Miller
1997-02-24Only update owner (via lchown) when dealing with symbolic links.Todd C. Miller
Fixes core dump problem with ``-p'' and symbolic links. Noted by Carsten Hammer <chammer@post.uni-bielefeld.de>.
1997-02-20cpio emulation for paxThorsten Lockert
1997-02-16Don't give summary line at end when using tar formatThorsten Lockert
1997-02-16Correct handling of long filenames that has been stored with a prefix inThorsten Lockert
the archive; generate POSIXly correct padding of octal fields.
1997-02-14Deal with 64-bit offsets and report bytes copied as a 64-bit quantity.Todd C. Miller
Closes OpenBSD PR system/107.
1997-02-12Stat field takes 5 chars not 4 (think "IW<s+")kstailey
1997-02-10Permit single block trailers differently.Todd C. Miller
1997-02-10Don't freak out on archives with only a single block of 0's asTodd C. Miller
trailer (used to require two blocks of 0's but some tar's only put in one).
1997-02-06make "/bin/kill -CONT ''" abort correctly; arnej@imf.unit.noTheo de Raadt
1997-02-05Added "gid" keyword to print effective group ID of process.kstailey
(also alpha-sorted some of the man page that was nearly sorted.) BEFORE: kstailey@hermes$ ps -o ruid,svuid,uid,command RUID SVUID UID COMMAND 333 333 333 -bash (bash) worked, but group equivalent failed: kstailey@hermes$ ps -o rgid,svgid,gid,command ps: gid: keyword not found RGID SVGID COMMAND 20 20 -bash (bash) AFTER: kstailey@hermes$ ps -o rgid,svgid,gid,command RGID SVGID GID COMMAND 20 20 20 -bash (bash)
1997-02-02Remember errno if fchown() fails so we get correct warningsThorsten Lockert
Only warn about not being able to restore user/group owner if not -f
1997-02-01Get precedence rightThorsten Lockert
1997-01-26We don't follow old 4.4BSD symlink semantics anylonger.Jason Downs
1997-01-26support for lchown(2) if "-p" is usedkstailey
1997-01-26Support lchown().Jason Downs
1997-01-24Support multiple -v options like GNU tar (> 1 -v means do ls-like output).Todd C. Miller
1997-01-23sh-based TEST suite and man page clarifications from FreeBSDTodd C. Miller
1997-01-22xref manual pages via SEE ALSOkstailey
1997-01-15getopt(3) returns -1 when out of args, not EOF, whee!Todd C. Miller
1997-01-05HOSTCC; from rahndsTheo de Raadt
1997-01-03From NetBSD:Todd C. Miller
- Correct sorting behaviour. - Do multicolumn output in a way that's a more likely to line up evenly. From D'Arcy J.M. Cain <darcy@druid.com>, NetBSD PR #2965.
1997-01-02Revert HISTFILE. If anyone wants a differently named history file, theyJason Downs
can set it in their environment.
1997-01-02Don't mention $_.Jason Downs
1997-01-02After discussing $_ with the maintainer, revert ksh behaviour and completelyJason Downs
eliminate it from sh.
1997-01-02Add FSH (set -o sh), initialize it if we're /bin/sh, and add the first use:Jason Downs
don't set $_ if we're non-interactive.
1996-12-29change the name of the history file from .pdksh_hist to .ksh_historyThomas Graichen
this way it is clearer where it comes from (pdksh is ksh in OpenBSD) and it's more consistent with other shells (bash - .bash_history and i think FreeBSD's sh also used something like .sh_history)
1996-12-24indicate this mktemp is vulnerable to a DOS attack, however the impact is ↵Theo de Raadt
very low
1996-12-24ref sigactionTheo de Raadt
1996-12-24Use mkstemp(3) for temporary filesThorsten Lockert
1996-12-22Deal with _POSIX_SAVED_IDS when relinquishing privilegesThorsten Lockert
1996-12-18Up limit of available user file descriptors (e.g. for redirections) to 32Niklas Hallqvist
1996-12-17Fix typoThorsten Lockert
1996-12-17Get TAB expansion rightThorsten Lockert
1996-12-16Implement more tty flags for better portability from other systems:Thorsten Lockert
XCASE - canonical input/output processing IUCLC - translate uppercase to lowercase on input OLCUC - translate lowercase to uppercase on output OCRNL - translate carriage return to newline on output ONOCR - do not output carriage return at column 0 ONLRET - newline performs carriage return function In addition the tty compatibility interface supports LCASE properly. Look at termios(4) for a more complete description of the above flags.
1996-12-14-Wall'ing.Michael Shalayeff
1996-12-12"stdin" is not a stdin! (perror)Michael Shalayeff
1996-12-10"the the" purgeTheo de Raadt
1996-12-09support pax '-s replstr' option in tar mode too. this can be used toTheo de Raadt
deal with cleaning up absolute paths
1996-12-09revert to spawning compress-ing program. normally we want extracts usingTheo de Raadt
'z' to also work on .Z files, but libz does not deal with compressed data. Hacking the code to deal well with pipes has proven very hard.
1996-12-07handle -t & -l in more cases; netbsd pr#2869, hubert.feyrer@rz.uni-regensburg.deTheo de Raadt
1996-12-04use TCSADRAIN instead of TCSANOW, to avoid dropping characters.Todd C. Miller
Fix from NetBSD (christos), reported by Chris Torek.
1996-12-01Parser fix from NetBSD (christos)Todd C. Miller
- ! was only recognized in the beginning of pipelines. Now we are recognizing it everywhere like ksh, so the following works. ! if [ a = b ]; then ! echo c && ! true; else ! echo d; fi
1996-11-30Install ksh as sh too.Jason Downs
1996-11-24Fix truncation of options list in getopts builtin.Todd C. Miller
Noticed by Matthieu Herrb <Mathieu.Herrb@mipnet.fr>
1996-11-24Fix core dump if -xz and archive does not exist (doh!)Todd C. Miller
1996-11-24Sync w/ NetBSD (christos)Todd C. Miller
Fix miscellaneous getopts problems: - the 3 argument version of getopts would not reset properly - OPTARG did not get cleared after a non argument option was found - OPTIND was not set properly after a non argument option.
1996-11-2464-bit cleanup + pedantic -W flagsNiklas Hallqvist
1996-11-21syncJason Downs