Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mdoc(7) police: lint. | ru | 2002-05-30 | 1 | -10/+8 |
| | |||||
* | mdoc(7) police: removed unnecessary .Ns. | ru | 2002-05-30 | 2 | -2/+2 |
| | |||||
* | mdoc(7) police: removed unnecessary .Ns's. | ru | 2002-05-30 | 1 | -3/+3 |
| | |||||
* | Move exit status info into Diagnostics section. | tjr | 2002-05-30 | 1 | -4/+2 |
| | |||||
* | Accept an input file name of "-" to mean standard input, as required by | tjr | 2002-05-30 | 2 | -16/+20 |
| | | | | P1003.2. | ||||
* | Fields should be separated by <blank>s, not <space>s according to P1003.2. | tjr | 2002-05-29 | 1 | -1/+1 |
| | |||||
* | Don't bother trying to handle "-" arguments ourselves, getopt(3) already | tjr | 2002-05-29 | 1 | -5/+2 |
| | | | | does this for us. | ||||
* | mdoc(7) police: lint. | ru | 2002-05-29 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: punctuation. | ru | 2002-05-29 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: tidy up the markup. | ru | 2002-05-29 | 1 | -51/+70 |
| | |||||
* | mdoc(7) police: markup nits. | ru | 2002-05-29 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: use .Fl to represent stdin. | ru | 2002-05-29 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: lint. | ru | 2002-05-29 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: lint. | ru | 2002-05-29 | 1 | -2/+3 |
| | |||||
* | A space between switch and open-paren. Don't explicitly cast the value | jmallett | 2002-05-29 | 1 | -1/+1 |
| | | | | returned by getopt(3) to 'char' in a switch. | ||||
* | ANSI, __FBSDID() | jmallett | 2002-05-29 | 1 | -6/+5 |
| | |||||
* | Use mkstemp(3) to avoid /tmp race. | tjr | 2002-05-29 | 1 | -4/+4 |
| | |||||
* | Document standards conformance. | tjr | 2002-05-29 | 1 | -0/+5 |
| | |||||
* | style(9): Sort sections correctly, exit status info into DIAGNOSTICS section. | tjr | 2002-05-29 | 1 | -6/+6 |
| | |||||
* | Sync synopsis with reality: file arguments are optional. | tjr | 2002-05-29 | 2 | -2/+2 |
| | |||||
* | Use getopt() to reject any options and skip "--" arguments. | tjr | 2002-05-29 | 1 | -10/+15 |
| | |||||
* | Make our child the leader of its own process group to avoid receiving | des | 2002-05-29 | 1 | -0/+2 |
| | | | | signals in its stead. This fixes the dread "zsh exits upon ^C" bug. | ||||
* | Assume __STDC__, remove non-__STDC__ code. | alfred | 2002-05-28 | 2 | -52/+3 |
| | |||||
* | Add a History section. comm(1) appeared in V4. | tjr | 2002-05-28 | 1 | -0/+5 |
| | |||||
* | No need to handle '-' explicitly in getopt() loop. | tjr | 2002-05-28 | 1 | -5/+2 |
| | | | | Obtained from: NetBSD | ||||
* | Drive-by whitespace cleanup & add NAI copyright | des | 2002-05-28 | 1 | -2/+9 |
| | |||||
* | Drive-by whitespace cleanup. | des | 2002-05-28 | 1 | -13/+13 |
| | |||||
* | Write "FROM" heading above the hostname column, like NetBSD and GNU do. | tjr | 2002-05-28 | 1 | -0/+1 |
| | |||||
* | Add uuidgen(2) and uuidgen(1). | marcel | 2002-05-28 | 4 | -0/+191 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The uuidgen command, by means of the uuidgen syscall, generates one or more Universally Unique Identifiers compatible with OSF/DCE 1.1 version 1 UUIDs. From the Perforce logs (change 11995): Round of cleanups: o Give uuidgen() the correct prototype in syscalls.master o Define struct uuid according to DCE 1.1 in sys/uuid.h o Use struct uuid instead of uuid_t. The latter is defined in sys/uuid.h but should not be used in kernel land. o Add snprintf_uuid(), printf_uuid() and sbuf_printf_uuid() to kern_uuid.c for use in the kernel (currently geom_gpt.c). o Rename the non-standard struct uuid in kern/kern_uuid.c to struct uuid_private and give it a slightly better definition for better byte-order handling. See below. o In sys/gpt.h, fix the broken uuid definitions to match the now compliant struct uuid definition. See below. o In usr.bin/uuidgen/uuidgen.c catch up with struct uuid change. A note about byte-order: The standard failed to provide a non-conflicting and unambiguous definition for the binary representation. My initial implementation always wrote the timestamp as a 64-bit little-endian (2s-complement) integral. The clock sequence was always written as a 16-bit big-endian (2s-complement) integral. After a good nights sleep and couple of Pan Galactic Gargle Blasters (not necessarily in that order :-) I reread the spec and came to the conclusion that the time fields are always written in the native by order, provided the the low, mid and hi chopping still occurs. The spec mentions that you "might need to swap bytes if you talk to a machine that has a different byte-order". The clock sequence is always written in big-endian order (as is the IEEE 802 address) because its division is resulting in bytes, making the ordering unambiguous. | ||||
* | Hook newgrp(1) up to the build. | tjr | 2002-05-28 | 1 | -0/+1 |
| | | | | PR: 36190 | ||||
* | Add the newgrp(1) utility, which changes groups. This is required by | tjr | 2002-05-28 | 3 | -0/+411 |
| | | | | | | | the POSIX.2 UPE. PR: 36190 Reviewed by: -standards, silence on -audit | ||||
* | The XCU issue 5 requirement of accepting the file operand intermingled | tjr | 2002-05-27 | 2 | -12/+1 |
| | | | | with options has been withdrawn in issue 6, to which nl(1) now conforms. | ||||
* | style(9): use errx() where appropriate instead of fprintf() + exit(). | tjr | 2002-05-27 | 1 | -39/+24 |
| | |||||
* | style(9): use err() instead of perror() + exit(). | tjr | 2002-05-27 | 1 | -20/+11 |
| | |||||
* | Claim conformance to IEEE Std 1003.1-2001. | tjr | 2002-05-27 | 1 | -0/+6 |
| | | | | See also csplit(1). | ||||
* | Allow "-" to be specified as an operand as well as an option. | tjr | 2002-05-27 | 2 | -2/+10 |
| | | | | SUSV3 requires something like "split -- -" to work. Document the "-" operand. | ||||
* | Avoid overflowing `fname' if the file name prefix given on the command | tjr | 2002-05-27 | 1 | -1/+2 |
| | | | | | | line is too long. Obtained from: OpenBSD | ||||
* | Exit non-zero if the tags file cannot be opened. | tjr | 2002-05-27 | 1 | -1/+1 |
| | |||||
* | From NetBSD: | tjr | 2002-05-27 | 1 | -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 | ||||
* | Initialise the `positions' array correctly before use. | tjr | 2002-05-27 | 1 | -0/+3 |
| | |||||
* | Add Standards, Diagnostics and History sections. | tjr | 2002-05-26 | 1 | -0/+17 |
| | |||||
* | If a file operand cannot be processed, go on to process any remaining files | tjr | 2002-05-26 | 1 | -3/+8 |
| | | | | but exit non-zero. | ||||
* | Make it work for a different endianness binary. | ru | 2002-05-25 | 2 | -47/+31 |
| | | | | | | (This version is still limited to ELF64.) Reviewed by: jake | ||||
* | Move elf2aout to usr.sbin/. | ru | 2002-05-25 | 1 | -1/+0 |
| | | | | Approved by: jake | ||||
* | Sync usage message with manual page synopsis. | tjr | 2002-05-25 | 1 | -2/+2 |
| | |||||
* | Bad numeric arguments or usernames should cause non-zero exit status. | tjr | 2002-05-25 | 1 | -3/+8 |
| | |||||
* | Determine exit status to use before writing diagnostic message; warn() | tjr | 2002-05-25 | 1 | -6/+1 |
| | | | | may change errno. | ||||
* | Typo: use plural now that we have more than one option. | tjr | 2002-05-25 | 1 | -1/+1 |
| | |||||
* | If a file cannot be processed, try to process any remaining files | tjr | 2002-05-25 | 1 | -3/+5 |
| | | | | then exit non-zero. | ||||
* | Add the word ``fields'' to the description, and change an instance from | trhodes | 2002-05-24 | 1 | -2/+2 |
| | | | | | | fields to num in the SYNOPSIS Noticed by: keramida |