summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* PR: docs/4449wosch1997-09-131-1/+6
| | | | | | The -c flag is not documented in the sh(1) manapge. Submitted by: adrian@virginia.edu
* spelling corrections.wosch1997-09-132-3/+3
| | | | | PR: docs/4450 Submitted by: josh@quick.net
* This command doesn't need to be setuid root, it's only askingjkh1997-09-121-3/+1
| | | | | | for potential trouble. Reviewed by: security officers. Noted by: OpenBSD
* fix misspellingjmg1997-08-301-2/+2
| | | | | | Submitted-by: Josh Gilliam Closes PR:4427
* fix misspellingjmg1997-08-301-2/+2
| | | | | | Submitted-by: Josh Gilliam Closes PR:4425
* Dont have an internal function named "warn" it clashes with libc..sos1997-08-2915-247/+247
| | | | Needed for ELF.
* Restored clobbered parts of rev.1.15 (build intermediate object filesbde1997-08-251-2/+14
| | | | for tools).
* Correct confusing error message when called as 'stty -sane'.steve1997-08-241-5/+8
| | | | PR: bin/3573
* Disallow empty arguments (eg: '') as process ids.jlemon1997-08-211-4/+4
| | | | | PR: 2631 Submitted by: Arne Henrik Juul <arnej@imf.unit.no>
* Document correct option in manual page.jlemon1997-08-191-2/+2
| | | | | PR: 3769 Submitted by: johnp@lodgenet.com
* Pad the input buffer whenever sync is used, not just if the noerror flagjlemon1997-08-191-10/+12
| | | | | | | | | | is also set. Change osync to not to tack on an empty block if the input buffer is null, or an even multiple of the blocksize. Also change osync to pad the output with nulls/spaces depending whether this is a block-oriented conversion or not (same as sync). PR: 3818
* Hint at how to use TZ.brian1997-08-181-1/+6
| | | | Submitted by: grog@lemis.com
* Make all status values an integral type and usesteve1997-08-182-7/+8
| | | | pid_t when referring to process IDs.
* Use -I${.CURDIR}/../../sys so that the path is relativesteve1997-08-131-2/+2
| | | | | | to the source code directory. Submitted by: bde
* Describe signals behaviour nowache1997-08-121-1/+7
|
* Oops, add #include's (forgotten in last commit) to make thissteve1997-08-111-1/+4
| | | | compile again.
* Use -I../../sys instead of -I/sys.steve1997-08-111-2/+2
|
* Remove #ifdef NEWVM code and remove extra "key.name = p" line.steve1997-08-111-125/+6
|
* Fix seg fault when invalid keywords are used.steve1997-08-111-3/+2
| | | | | PR: bin/4253 Submitted by: Jesse Rosenstock <jmr@ugcs.caltech.edu>
* Remove forgotten debug statement.brian1997-08-101-2/+1
|
* Add "-f fmt date" for specification of thebrian1997-08-102-63/+93
| | | | | | | | date using strptime(3). Suggested by: Michael Smith <msmith@atrad.adelaide.edu.au> Change mm & dd to MM & DD so that they don't clash with the month.
* Change [-DMHW [+|-]val] to [-v [+|-]val[ymwdHM]]brian1997-08-095-108/+166
| | | | | Support Hours & Minutes Add -Wall to Makefile
* More minor nits (mostly using memove instead of memcpy).steve1997-08-086-16/+13
|
* More $@ -> ${.TARGET} that I missed earlier.steve1997-08-082-8/+8
|
* Observe precedence set by Philippe Charnier when adding ansteve1997-08-071-3/+8
| | | | rcsid.
* Observe precedence set by Phillippe Charnier in adding ansteve1997-08-075-15/+28
| | | | rcsid.
* Changes include: sccsid -> rcsid, bcopy -> memcpy, don't use thesteve1997-08-0725-540/+606
| | | | | | register keyword, and -Wall cleaning. Obtained from: similar changes in NetBSD
* Remove remaining Lite1 stuff from the man page and uphold thesteve1997-08-072-10/+9
| | | | | | | precedence in changing sccsid to rcsid as set by Phillippe Charnier in his previous 100 or so commits. pointed out by: Bruce Evans <bde@zeta.org.au>
* sccsid -> rcsid and fix some minor nits.steve1997-08-078-21/+46
|
* Add Bruce's _NEW_VFSCONF flag to make this compile cleanly andsteve1997-08-072-6/+9
| | | | sccsid -> rcsid.
* #include <err.h> for err(3) call and replace extern reference to errnosteve1997-08-071-8/+6
| | | | with #include <errno.h>.
* Remove #if(n)def BSD_4_4_LITE cruft and change sccsid to rcsid.steve1997-08-071-46/+5
|
* Remove #if(n)def BSD_4_4_LITE cruft and sccsid -> rcsid.steve1997-08-077-35/+21
|
* Add [-DWMY] flags for date adjustment.brian1997-08-045-8/+430
| | | | Discussed with: freebsd-hackers
* Fix "lstart". (Displays "19" rather than time)peter1997-08-031-2/+2
| | | | | PR: 4206 Submitted by: Tetsuya Furukawa <tetsuya@secom-sis.co.jp>
* Kill #ifndef NEWVM etc. It affected a lot of other things besidespeter1997-08-034-130/+7
| | | | | | | VM structure (eg: credentials etc) and it's highly unlikely we'll ever get to see the "tainted" BSD<=4.3 VM code in public use. Although it indicated the way some things used to be done, it obfuscates things too much.
* devname.c moved to libc before Lite1 and isn't in ps in Lite2.bde1997-07-131-82/+0
|
* Bury this properly.bde1997-07-011-13/+0
|
* This commit was generated by cvs2svn to compensate for changes in r27159,bde1997-07-011-0/+13
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import this unwanted file from Lite-original so that it doesn'tbde1997-07-011-0/+13
| | | | | | | | | | get imported with Lite2 (there was only one missing file in src/bin, other than tags files and obj links).
* | Remove lines inside #ifdef 0/#endif.charnier1997-06-301-34/+1
| |
* | NOSHARED takes a yes/YES no/NO value, not "true, false, hey mon!".pst1997-06-291-1/+1
| | | | | | | | | | | | NOPIC is used to not generate a shared library, not NOSHARED. Make NOSHARED advisory where appropriate. Remove bogus NOSHARED (kbdio).
* | Document the use of `ls -lo' to see flags.charnier1997-06-241-0/+4
| | | | | | | | Obtained from: OpenBSD.
* | Back out previous fix - this bug's got diplomatic immunity as a registeredjkh1997-06-191-3/+1
| | | | | | | | political issue.
* | >Number: 3780jkh1997-06-191-1/+3
| | | | | | | | | | | | | | | | >Category: bin >Synopsis: WEXITSTATUS() may return nagative value, which causes sh to generate bad $? PR: 3780 Submitted by: sanewo@ba2.so-net.or.jp
* | Try again to explain the existence of lchown() and the absence ofjdp1997-06-191-12/+7
| | | | | | | | lchmod() and lutimes().
* | Update some text to reflect the fact that symbolic links now havejdp1997-06-141-4/+4
| | | | | | | | owner and group attributes.
* | Now [^abc] means the same as [!abc] like bash and *csh already doesache1997-06-061-4/+4
| |
* | Typo in usage string. Looks like the man page now.charnier1997-06-061-2/+2
| |
* | Err(3) was locally defined (for portability reasons). Use #ifdef 0/#endifcharnier1997-06-061-1/+5
| | | | | | | | to hide this so libc is kept instead.
OpenPOWER on IntegriCloud