summaryrefslogtreecommitdiffstats
path: root/usr.bin/hexdump
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: tidy up the markup.ru2002-05-291-51/+70
|
* From NetBSD:tjr2002-05-271-3/+1
| | | | | | | | Revision 1.10 Sat Oct 14 17:41:55 2000 UTC by bjh21 Don't core dump with an empty format string. Fixes PR#11218. Patch supplied by Launey Thomas. Obtained from: NetBSD
* Make the output tidier when multiple integer formats are requested bytjr2002-05-171-3/+3
| | | | | | attempting to line up values into columns. Obtained from: NetBSD (idea)
* Overhaul hexdump's od syntax code to handle the -s -A -j -N -t options thattjr2002-05-175-87/+425
| | | | | | SUSv3 requires and give od a proper manual page. PR: 36783
* Declare variables that were extern'd in multiple places in hexdump.h.tjr2002-05-174-9/+3
| | | | PR: 36783
* Add support for printing long doubles.tjr2002-05-173-1/+12
| | | | PR: 36783
* Print signed single-byte decimal integers correctly instead of implicitlytjr2002-05-171-1/+1
| | | | | | converting them to unsigned bytes. PR: 36783
* Un-deprecate od(1): rename the `deprecated' variable to `odmode', remove thetjr2002-05-174-14/+7
| | | | | | | | | deprecation warning from the utility and manual page. Since this utility is required by POSIX, it's not likely to be removed any time soon. This is leading up to the addition of the P1003.1-2001 -s -A -j -N -t options. PR: 36783
* Use `The .Nm utility'charnier2002-04-192-11/+14
|
* remove __Pimp2002-03-223-23/+23
|
* Slightly more efficient version of rev 1.6.obrien2002-03-071-1/+1
|
* A less intrusive version of rev 1.2.obrien2002-03-071-21/+15
|
* Slightly more efficient fix to the const problem.obrien2002-03-071-1/+1
|
* Remove leaf node WARNS?=2 (that mainly I added). This shouldmarkm2002-02-081-1/+0
| | | | help the GCC3 transition and CURRENT in general.
* WARNS=2 fixups.markm2001-12-025-23/+33
|
* mdoc(7) police: Fixed the .Ex calls in manpages that describe moreru2001-09-111-1/+1
| | | | | | | than one utility. PR: docs/30437 Submitted by: SUZUKI Koichi <koich@cac.co.jp>
* File positions are off_t nowdays, not long, so:ache2001-09-013-3/+3
| | | | | | | | | | strtol -> strtoll fseek -> fseeko NOTE: that fseek not works for >long offsets files per POSIX: [EOVERFLOW] For fseek( ), the resulting file offset would be a value which cannot be represented correctly in an object of type long.
* mdoc(7) police: utilize the new .Ex macro.ru2001-08-151-3/+2
|
* Remove the misnamed `emalloc' and replace its uses with the calloc (alongobrien2001-07-243-26/+14
| | | | with error checking) that it actually was.
* Remove whitespace at EOL.dd2001-07-151-8/+8
|
* MAN[1-9] -> MAN.ru2001-03-271-1/+2
|
* mdoc(7) police: use the default ``file ...'' feature of the .Ar macro.ru2001-02-131-2/+2
|
* Change localizing to LC_ALLache2001-02-101-1/+1
|
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-5/+5
|
* Prepare for mdoc(7)NG.ru2000-12-271-0/+1
|
* Prepare for mdoc(7)NG.ru2000-12-191-14/+14
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-202-10/+17
|
* Oops, missed another printf() invocation with no format string.kris2000-07-101-1/+1
|
* Don't call printf() with no format string.kris2000-07-101-1/+1
|
* Correct spelling : ascii -> ASCIIphantom1999-09-202-2/+2
| | | | | | PR: docs/13702 Submitted by: Stephen J. Roznowski <sjr@home.com> Reviewed by: mpp
* $Id$ -> $FreeBSD$peter1999-08-287-7/+7
|
* Clean up some ambiguous nested if/elses.billf1999-07-041-2/+3
|
* PR: bin/9016dillon1998-12-131-3/+8
| | | | | | | | | Fix bug with od/hd/hexdump. "*" lines are supposed to indicate one or duplicates of the previous line, but a small file with less then 16 characters of zeros in it will be falsy identified as a repeat of the (non-existant) previous line. i.e. the first line of output winds up being a "*". Added a bit of code to handle the degenerate 'there is no previous line' case for the first line.
* Localize itache1997-11-043-13/+13
|
* Use err(3) instead of local redefinition, incorporate `hd' in usage str.charnier1997-07-106-58/+48
|
* Fix a minor nit in the .Dd macro invocation so thatsteve1997-06-231-2/+2
| | | | the revision date is displayed correctly.
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-292-2/+2
| | | | posix standard on the topic.
* Merge from Lite2peter1997-03-112-4/+8
|
* Revert $FreeBSD$ to $Id$peter1997-02-222-2/+2
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-142-2/+2
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* delete doubled words, e.g.: "the the" -> "the"wosch1996-10-051-1/+2
|
* Fix the previous commit. The second of the 8-character columns waspeter1996-10-041-4/+2
| | | | a duplicate of the first column of 8...
* Now that we've already got "hexdump -C", make calling the command "hd"joerg1996-09-293-4/+28
| | | | | | | | | | | having the same effect, and install a link for this. There is historic precedence for the command hd(1) (with roughly that output format) in Xenix, SCO, and a few SysV's that tooks the idea. Also, added a couple of spaces to the -C format to make the output better readable. Ok'ed by: phk
* Add '-C' "Canonical" format to hexdump:phk1996-09-162-2/+12
| | | | | | | $ hexdump -C /etc/resolv.conf 00000000 64 6f 6d 61 69 6e 20 64 6b 2e 74 66 73 2e 63 6f |domain dk.tfs.co| 00000010 6d 0a 6e 61 6d 65 73 65 72 76 65 72 20 31 34 30 |m.nameserver 140| 00000020 2e 31 34 35 2e 32 33 30 2e 31 30 0a |.145.230.10.|
* [HISTORY] command appeared in Version 1 AT&T UNIXwosch1996-08-291-0/+6
| | | | Obtained from: A Quarter Century of UNIX, Peter H. Salus, page 41
* Correct some cross references and some path names.mpp1996-04-061-1/+1
|
* Correct some manual page cross reference errors. E.g. su is a sectionmpp1996-02-021-1/+1
| | | | | one man page, not section eight. This is the first round of such changes and only fixes man pages in manual section one.
* Remove trailing whitespace.rgrimes1995-05-301-1/+1
|
* Change .0 man extents to .1, as reported by Julian Elischer. Whoops,jkh1994-08-131-1/+1
| | | | | | thought I'd gotten this one the first time around. Reviewed by: Submitted by:
* BSD 4.4 Lite Usr.bin Sourcesrgrimes1994-05-2710-0/+2022
OpenPOWER on IntegriCloud