summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Deal with double whitespace.ru2004-07-0331-110/+112
|
* Add support for multibyte characters.tjr2004-07-022-35/+41
|
* Document the -i option as being a non-standard extension.tjr2004-07-021-0/+6
|
* Add support for multibyte characters.tjr2004-07-022-33/+47
|
* Nit.ru2004-07-021-1/+1
|
* Fix after rev. 1.24 changes: bump document date, and remove -cru2004-07-021-2/+2
| | | | from SYNOPSIS.
* Mechanically kill hard sentence breaks.ru2004-07-0281-499/+973
|
* Deal with unsafe tab characters.ru2004-07-021-1/+3
|
* mdoc(7): Fixed list types.ru2004-07-021-2/+2
|
* Removed trailing whitespace.ru2004-07-023-6/+6
|
* Fixed spelling of the document date.ru2004-07-021-1/+1
|
* manlinteik2004-07-021-6/+5
| | | | Obtained from: ru
* New variable `.MAKEFILE_LIST', useful for tracing, debugging and dependency ↵eik2004-07-022-3/+30
| | | | | | | | | | | tracking. Use make -V .MAKEFILE_LIST | tr \ \\n | awk '$0==".." {l--; next} {l++; printf "%*s%s\n", l, " ", $0}' to print a tree of all included makefiles. Approved by: joerg MFC after: 1 week
* Tell what percentage of the total IO a process is doing.alfred2004-07-011-5/+37
| | | | TODO: Show system totals.
* New feature, provide a display that shows the amount of IO processesalfred2004-07-011-3/+140
| | | | | | are doing. Toggle this mode by hitting "m" or passing the command line option "-m io" to top(1). This allows one to identify disk bandwidth hogs much easier.
* Bump document date.schweikh2004-06-301-1/+1
| | | | Submitted by: ru
* style, remove register.alfred2004-06-301-87/+69
|
* Make vmstat -m work with -M/-N again. Note that making vmstat -z workgreen2004-06-301-11/+93
| | | | | is much harder, and -m is grossly using unexported interfaces (that is, the array of malloc zones/sizes does not have an exported type).
* 1) ANSIfy.dwmalone2004-06-295-45/+21
| | | | | | | 2) Use %p to print a pointer. 3) Use longs for fileids and ino to avoid comparing signed and unsigned. 4) Make the KVM_READ macro a little more cranky. 5) Set WARNS while I'm here.
* The type of some aout header types changed to uint_32, so now we needdwmalone2004-06-292-13/+14
| | | | to cast to long before printing. While I'm here, raise WARNS to 6.
* Add SACK statistics to netstat.ps2004-06-291-0/+10
|
* Document recently acquired options.schweikh2004-06-291-0/+12
| | | | | | PR: 67983 Submitted by: Chip Norkus <wd@teleri.net> MFC after: 2 weeks
* Add yet another synonym for -n.kientzle2004-06-281-0/+1
|
* Fix spelling error in my own paragraph.dd2004-06-281-1/+1
|
* Document incorrect handling of multibyte characters in input filestjr2004-06-281-1/+6
| | | | and character string arguments.
* Describe the algorithm used by the -n option.tjr2004-06-281-0/+3
|
* Move some variable declarations to the top of the file.tjr2004-06-281-4/+3
|
* Update -p:kientzle2004-06-271-1/+2
| | | | | | | * Don't change the umask; the library now ignores the umask if you set EXTRACT_PERM * Set the EXTRACT_ACL and EXTRACT_FFLAGS bits (used to be controlled by EXTRACT_PERM).
* Warn about stripping leading '/' when creating archives.kientzle2004-06-271-1/+8
|
* Silence a warning about an unused argument.tjr2004-06-271-1/+1
|
* Correct the description of the -f option: input and output fields aretjr2004-06-271-2/+6
| | | | | separated by the field delimiter character, which is not necessarily the tab character.
* Handle multibyte characters when cutting out fields (-f and -d options.)tjr2004-06-272-28/+47
|
* Update a comment that compared the parser with an obsolete draft oftjr2004-06-271-4/+2
| | | | | IEEE Std 1003.2-1992. Most of the "extensions" here were actually required by the final version of the standard.
* Add cross-reference to colrm(1).tjr2004-06-271-0/+1
|
* Implement the -c option correctly in locales with multibyte characterstjr2004-06-272-40/+67
| | | | instead of treating it as a synonym for -b.
* Fix problems with non-8 space tabs. New options for functionschweikh2004-06-274-15/+45
| | | | | | | | | | | declarations with the opening brace on the same line as the declaration of arguments all spaces and no tabs (a feature which exists in GNU's indent). Man page update to follow RSN. PR: bin/67983 Submitted by: Chip Norkus <wd@teleri.net> Style guidance and bug for bug compatibility by: bde MFC after: 2 weeks
* Make the handling of invalid multibyte sequences more robust by usingtjr2004-06-271-1/+5
| | | | mbrlen() instead of mblen().
* Augment the -T handling:kientzle2004-06-276-98/+161
| | | | | | | | | | | | * Add --null option (sort #defines here) * Add process_lines function to util.c that reads newline-terminated or null-terminated lines (with self-sizing buffers, etc) and iteratively invokes a provided function. Use this to dramatically simplify: -T handling for -c, --exclude-from-file, and --include-from-file. * Add -T handling to -x (via include_from_file) Hopefully, this will fix the openoffice port and a couple of others that rely on -T and --null.
* Fix "@-" which has apparently been broken for some time. <sigh>kientzle2004-06-271-8/+28
| | | | While I'm here, add in a lot more error-checking around append_archive.
* Don't abort immediately on directory change errors.kientzle2004-06-271-6/+16
| | | | | | Instead, display a warning, clean up, and let main() return the error. In particular, this means that chdir() problems won't leave broken archives, though they will prompt an error exit value.
* Document the -W convention for accessing long options.kientzle2004-06-261-9/+15
| | | | Also correct an old error: there was no tar command in Sixth Edition.
* Rename C=dir to -C dir, which is what people expect.kientzle2004-06-263-77/+127
| | | | | | | This requires some non-trivial surgery to the options parsing. While here, let people who only have getopt() access long options through the -W longopt=value convention.
* Add support for multibyte characters in input files and delimitertjr2004-06-252-31/+48
| | | | | | strings (arguments to the -d option.) This involves backing out paste.c rev. 1.13 until we have a version of fgetln() that operates on wide character streams.
* Document the fact that uniq(1) does not recognize multibyte characters.tjr2004-06-241-1/+5
|
* Document the fact that join(1) does not recognize multibyte characters.tjr2004-06-241-1/+6
|
* Copy the warning about incorrect multibyte character handling from vis(3).tjr2004-06-241-1/+9
|
* Document the fact that comm(1) does not recognize multibyte characterstjr2004-06-241-1/+7
| | | | | | in its input. Although doing so would require only trivial changes, it would be incompatible with the ordering used by sort(1), which is the primary source of comm's input.
* Add support for multibyte characters and characters that take up moretjr2004-06-241-24/+27
| | | | than one column position.
* Add support for multibyte characters and for characters that take uptjr2004-06-241-19/+27
| | | | more than one column position.
* The description of the -S option in the man page says we won't fail if thedes2004-06-241-1/+0
| | | | | | | remote size is unknown, but we do. Resolve this in the man page's favor. Requested by: Andre Albsmeier <andre.albsmeier@siemens.com> MFC after: 1 week
OpenPOWER on IntegriCloud