summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Update BIOS time.tg2001-05-221-0/+11
| | | | Submitted by: Igor Serikov <bt@turtle.pangeatech.com>
* Beautify debugging output.tg2001-05-221-2/+2
|
* Fix slice handling. Add 6 (`big' DOS partition) as a legal systemID.tg2001-05-221-2/+3
|
* Silence some debugging output when installing Borland's Turbo C.tg2001-05-221-1/+14
|
* Fix boot order (really try A:, then C:, unless the `boot' option istg2001-05-221-12/+32
| | | | specified in .doscmdrc).
* Implement file truncation (DOS function 0x21, sub 0x40).tg2001-05-221-4/+20
| | | | | PR: 20925 Submitted by: Tatsuya Kudoh <cdr@cosmonet.org>
* Correct typo to get DOS function 0x51 (get PSP) to work.tg2001-05-221-1/+1
| | | | | PR: 15547 Submitted by: Atushi Sakauchi <sakauchi@yamame.to>
* DOS function 0x0a (buffered keyboard input) returned immediately.tg2001-05-221-1/+1
| | | | | PR: 15531 Submitted by: Atushi Sakauchi <sakauchi@yamame.to>
* Fix DOS function 4c (exit with return code).tg2001-05-221-0/+1
| | | | | PR: 15528 Submitted by: Atushi Sakauchi <sakauchi@yamame.to>
* mdoc(7) police: fix markup.ru2001-05-221-40/+57
| | | | Submitted by: roam, ru
* Remove an accidentaly added extra blank line.eric2001-05-221-1/+0
| | | | Approved by: murray
* Disable SIGHUP while getting the login name.guido2001-05-211-0/+2
| | | | Reviewed by: security-officer
* Work around the side effect of src/include/Makefile,v 1.137 changes.ru2001-05-211-1/+1
| | | | (The proper fix is to add missing #include directives.)
* Print commas in the group list in user(). current() already did this.dd2001-05-201-1/+1
| | | | | Reviewed by: ru, sheldonh Inspired by: OpenBSD, NetBSD
* Silence WARNS=2 and BDECFLAGS on alpha and i386kris2001-05-202-2/+3
| | | | MFC after: 1 week
* Silence WARNS=2 and BDECFLAGS on alpha and i386kris2001-05-201-0/+1
| | | | MFC after: 1 week
* Silence WARNS=2 and BDECFLAGS on alpha and i386kris2001-05-202-2/+3
| | | | MFC After: 1 week
* This passes WARNS=2 on alpha and i386kris2001-05-201-1/+3
|
* Move scrshot(1) functionality into vidcontrol(1).sobomax2001-05-194-249/+0
| | | | | Suggested by: many Not objected to by: nik (scrshot co-author)
* String operations could silently truncate long strings, leaving the outputgshapiro2001-05-181-8/+8
| | | | | | | | | | | corrupted. Mark's patch fixes this be removing the MAXTOK limitation on substring operations and allowing the putback buffer size to be the limiting factor. If the putback buffer size if reached, m4 gives an error instead of silently truncating the string. PR: bin/26619 Submitted by: Mark Peek <mark-ml@whistle.com> MFC after: 5 days
* I appear to be badly out of practice. Remember to flush the output streamnik2001-05-181-0/+1
| | | | when mixing printf and write.
* Removed -I${.CURDIR}/.../sys from CFLAGS.ru2001-05-184-4/+0
|
* Remove GCC-ism (-Wall).ru2001-05-181-3/+0
|
* mdoc(7) police: Fix markup and spelling.ru2001-05-181-37/+34
|
* Don't leak memory when compiling text following the `a', `c' or `i' command.ru2001-05-181-1/+1
| | | | | | | | | Testcase: echo FOO | sed "/FOO/c\\ `jot -b 'aaaa\' 500`" Submitted by: Max Khon <fjoe@newst.net>
* Add scrshot to the i386 specific section. If someone can test this on thenik2001-05-181-0/+1
| | | | Alpha I'd appreciate it.
* By default build make(1) as a static binary. It costs only 100k of additionalsobomax2001-05-181-0/+2
| | | | | | | disk space, buf provides measureable speed increase for make-intensive operations, such as pkg_version(1), `make world' and so on. MFC after: 1 week
* New scrshot utility, using the CONS_SCRSHOT ioctl. Usage isnik2001-05-183-0/+253
| | | | | | | | scrshot /dev/ttyv0 > shot.scr See the shot2{txt,png} utilities (soon to be) in the ports collection. Reviewed by: -arch
* Missed a few things.obrien2001-05-181-3/+4
|
* In a word -- style(9).obrien2001-05-181-43/+51
|
* Add the "prompt" and "passwd_prompt" fields to /etc/login.conf,obrien2001-05-181-3/+8
| | | | | | which makes lgoin more like getty in its ability to be configured. Submitted by: tlambert (code only)
* Fix the rcsid's.obrien2001-05-1784-84/+168
|
* Check for the expiration of an account and its password in the propereric2001-05-171-12/+13
| | | | | | | | | order. Reviewed by: -audit (silence) Approved by: murray Obtained from: OpenBSD MFC after: 5 days
* mdoc(7) police: fix markup.ru2001-05-161-198/+255
|
* Fix an array which was too small.phk2001-05-161-1/+1
| | | | | PR: 27380 Submitted by: Samuel Greear <sgreear@vsni.com>
* mdoc(7) police: fix markup (demonstrates new -xwidth modifier).ru2001-05-161-26/+26
|
* Add a -J replstr option that allows the user to tell xargs to insertdd2001-05-152-6/+68
| | | | | | | | the data read from standard input at a specific point in the command line arguments rather than at the end. Submitted by: dd, gad Reviewed by: gad, brian
* Add some gravitational values.eric2001-05-121-0/+4
| | | | Approved by: murray
* Document the -h option.dd2001-05-112-2/+4
|
* Allow mail(1) to be able to read Eudora mailboxes by transformingmikeh2001-05-111-1/+13
| | | | | | | lines that end in <CR><LF> to just <LF>. Reviewed by: imp Obtained from: OpenBSD
* Handle sbsize as a size, not a number.sheldonh2001-05-101-1/+1
| | | | Submitted by: Paul Herman <pherman@frenchfries.net>
* Tell the user what group they must be in to su to root.obrien2001-05-101-1/+4
| | | | Submitted by: Seth Kingsley <sethk@osd.bsdi.com>
* mdoc(7) police: fix markup.ru2001-05-101-20/+20
|
* Here comes the forgotten C source, oopsy.schweikh2001-05-081-0/+108
| | | | | | | | | Turned the shell script into a binary fixing several minor buglets. Mention _POSIX_SOURCE feature test macro in man page. PR: bin/19337 Submitted by: schweikh Reviewed by: joerg, bde MFC after: 2 weeks
* Turned the shell script into a binary fixing several minor buglets.schweikh2001-05-083-77/+9
| | | | | | | | Mention _POSIX_SOURCE feature test macro in man page. PR: bin/19337 Submitted by: myself way back when I was a nobody :-) (schweikh) Reviewed by: joerg, bde MFC after: 2 weeks
* When opening the file to broadcast, do it with the user's gid, not thekris2001-05-081-2/+8
| | | | | | | | egid (tty). Obtained from: OpenBSD Submitted by: Maxime Henrion <mux@qualys.com> Reviewed by: imp
* Restore printing of routes cloned from a RTF_CLONING parentru2001-05-072-9/+10
| | | | | | | | (e.g., ARP table entries) with the default routing display. PR: bin/26970 Reviewed by: wollman MFC after: 3 days
* Fix markupbrian2001-05-051-1/+1
| | | | Spotted by: Jens Schweikhardt <schweikh@schweikhardt.net>
* Add nl(1)brian2001-05-044-0/+692
| | | | | PR: 27078 Obtained from: NetBSD
* They add the following commands:phk2001-05-039-927/+793
| | | | | | | | | | | | | | | | | | | | | -anewer -cnewer -mnewer -okdir -newer[acm][acmt] With it, you can form queries like find . -newerct '1 minute ago' -print As an extra bonus, the program is ANSI-fied - the original version relies on some obscure features of K&R C. (This PR was submitted in 1999, and the submittor has kept the patch updated ever since, hats off for him guys, and how about you close a PR ??) PR: 9374 Submitted by: Martin Birgmeier <Martin.Birgmeier@aon.at>
OpenPOWER on IntegriCloud