summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
1999-08-23fgets() -> fgetln(). When reading files like this, the notion of a `line' isAaron Campbell
more appropriate than C strings. Now paste won't die if it encounters null characters. If the last line in the stream does not contain a newline, we now say "incomplete line" instead of lying about "line too long". fgetln() uses realloc, so now we're not limited to POSIX_LINE_MAX.
1999-08-21Document the YP optionsNiklas Hallqvist
1999-08-21Let arch compile again...Marc Espie
1999-08-20Don't install with special permissions.Jason Downs
1999-08-20re-order includes and remove <sys/utsname.h> since we don't use uname()Todd C. Miller
Use __progname, not argv[0] for determining how we were called Fix a typo
1999-08-19Merge arch and machine sources. Add some options so it willNiklas Hallqvist
be easier to get at the ISA (instruction set architecture)
1999-08-18formattingAaron Campbell
1999-08-18comma splices, formatting nits, et alAaron Campbell
1999-08-18Fix a printf() so `id' and `id username' produce similar output; inspired byAaron Campbell
NetBSD, millert@ok.
1999-08-17doesn't count down from 99 anymoreTodd C. Miller
1999-08-17missing flags in SYNOPSISTodd C. Miller
1999-08-17mention RIPEMD-160 in body, fix dateTodd C. Miller
1999-08-17More <sys/file.h> vs. <fcntl.h> and open() flags fixes.Todd C. Miller
1999-08-16Consistify so "rup host" and "rup -d host" produce similarly formatted output.Aaron Campbell
1999-08-16fix includesArtur Grabowski
1999-08-16include unistd.hArtur Grabowski
1999-08-16fix includesArtur Grabowski
1999-08-16inculde com_err.hArtur Grabowski
1999-08-16inculude ctype.h for islower()Artur Grabowski
1999-08-16include ctype.h for isspace() and fix some declarationsArtur Grabowski
1999-08-16main() returns an int and include stdio.h to get prototype for putsArtur Grabowski
1999-08-16printf format fixesArtur Grabowski
1999-08-16nuke unused variableTodd C. Miller
1999-08-14Missing -I/usr/include/ssl, evanc@concer.toAngelos D. Keromytis
1999-08-12Support -M and -N flags in uptime mode tooTodd C. Miller
1999-08-09document "Precedence: list"Theo de Raadt
1999-08-06uid_t and gid_t, and use %uTheo de Raadt
1999-08-05o Use 10 X's in examples (noted by Theo)Todd C. Miller
o Add another example using the pretty brace block form
1999-08-04o Use __prognameTodd C. Miller
o Use _PATH_TMP o Use mkstemp() instead of mktemp() o Really use 10 X's (one is eaten up by a letter) o Correct manpage wrt temp file name o Uncomment .Xr yyfix in man page since we ship it now
1999-08-04supply particular mapping type to the mmap(2) instead of bogus 0Michael Shalayeff
1999-08-03use particular mapping type instead of bogus zero.Michael Shalayeff
-Wall overall happiness; millert@ ok
1999-07-31document cdev/bdev semantic changeTheo de Raadt
1999-07-30acd diesTheo de Raadt
1999-07-29"sprite.h"; soren@t.dkTheo de Raadt
1999-07-28clarifyTheo de Raadt
1999-07-26fix options; fgschAaron Campbell
1999-07-26add SEE ALSO section and Xr cat(1)Aaron Campbell
1999-07-26new mdoc'd jot(1) man pageAaron Campbell
1999-07-23fieldcnt is the number of fields, not +1... this one was missed in 1995Aaron Campbell
when the other two were fixed
1999-07-23- Missing newline when euid != ruid; from FreeBSDAaron Campbell
- Also, sync the usage() to the man page (add -p syntax).
1999-07-23Fix the case where telnet(1) would escape if in binary (-8) mode, even if theAaron Campbell
-E option (stop all characters from being recognized as an escape character) was specified, if it was passed a 0xFF character; from FreeBSD, millert@ ok
1999-07-23- Make error msgs more consistent with other usr.bin/ utils.Aaron Campbell
- Use warn() instead of an fprintf().
1999-07-23- Use strtol() instead of atoi() so head(1) will complain when given badAaron Campbell
number specifications like: head -123foobar456. Also, check for ERANGE and abort if strtol() returned LONG_MAX or LONG_MIN. - Don't exit() when encountering a filename in argv[] that can't be open; instead just continue. - Don't keep decrementing `linecnt' if we've hit the end of the file. millert@ ok
1999-07-21sounds betterAaron Campbell
1999-07-21Improve the description and add examples, including one that demonstrates howAaron Campbell
head(1) is often used in conjunction with tail -1 to display a single arbitrary line from a file.
1999-07-21sync names of arguments in SYNOPSIS with those in the option's descriptionAaron Campbell
1999-07-21use .Ar on later .It Fl linesTheo de Raadt
1999-07-21bye byeTheo de Raadt
1999-07-20skey help; freebsdTheo de Raadt
1999-07-20mention the skey command and Xr skey(1)Aaron Campbell