summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* For nonexisten time use proper diagnostic instead of bad format and usageache1996-04-061-2/+2
|
* Use unsigned char for isprintache1996-03-311-2/+2
|
* Fixed typo.bde1996-03-311-2/+2
| | | | Reported by: andreas@knobel.gun.de
* Fix 'stutter' in manpage.nate1996-03-121-2/+2
| | | | | | | The man page for date(1) talks about "a a" maximum, not just "a" maximum. Submitted by: Simon Burge <simonb@telstra.com.au> via NetBSD GNATS
* err() --> errx() for non-errno related failures.joerg1996-03-111-3/+3
|
* Option -f implemented (remove + create)wosch1996-03-084-17/+37
| | | | | | | | | option -f and -i are exclusive respond `Y' is equal to `y' fix usage string remove isatty(3) check Reviewed by: pst
* fix usage stringwosch1996-03-072-4/+20
| | | | | | respond `Y' is equal to `y' Add a note how to delete file name with beginning `-'
* delete unused label endargwosch1996-03-011-9/+8
| | | | | correct indent of last new code fix usage string, option -f before option -i (alphabetic order)
* option -f and -i are exclusive (Posix)wosch1996-02-202-9/+29
| | | | | | respond `Y' is equal to `y' update usage string prompt only if source exist
* Don't initialize udata, fix usage stringpst1996-02-191-4/+3
|
* Don't initialize udata, remove bogus case, fix usage stringpst1996-02-192-6/+5
|
* -- is implemented in getopt(3)pst1996-02-191-5/+2
| | | | -? is an unnecessary case statement and not useful
* delete my last commitwosch1996-02-197-68/+27
| | | | Submitted by: pst, ache
* Remove unnecessary '?' case and don't zero global udata, it's already zeropst1996-02-181-5/+4
|
* update usage stringwosch1996-02-181-5/+6
| | | | | all flag variables initialized with zero respond `Y' is equal to `y'
* Option -f implemented (remove + create)wosch1996-02-184-18/+39
| | | | | | | option -f and -i are exclusive all flag variables initialized with zero respond `Y' is equal to `y' update usage string
* option -f and -i are exclusivewosch1996-02-182-10/+30
| | | | | | | | | | all flag variables initialized with zero respond `Y' is equal to `y' update usage string prompt only if source exist ignore -i option if file descriptor stdin not refers to a valid terminal type device
* Add an .Xr for chflags(1) into the SEE ALSO sectoin.joerg1996-02-161-1/+2
| | | | Submitted by: jhs
* Added a update(4) man page to describe the kernel initiated updatempp1996-02-121-3/+3
| | | | process and changed all of the old references to update(8) to update(4).
* Correct a bunch of man page cross references and generallympp1996-02-111-2/+2
| | | | | | try and silence "manck". ncurses, rpc, and some of the gnu stuff are still a big mess, however.
* #include <kerberosIV/des.h> -> #include <des.h>markm1996-02-111-2/+2
|
* Close bin/937 - handle negative timestampspst1996-02-081-10/+9
|
* Fix the borokeness that crept in with rev 1.10 of parser.c, the shjoerg1996-02-032-3/+6
| | | | | | | | didn't correctly start background jobs anymore. Strange that nobody was complaining... Add a dummy target for `builtins' in the Makefile, to prevent it from attempting to build this file by compiling builtins.c. :-/
* Fix some incorrect locations in the FILES sections of some man pages.mpp1996-02-021-3/+3
|
* Fix some spelling errors.mpp1996-01-291-5/+5
|
* Use the correct buffer size from limits.h for the error buffermpp1996-01-201-2/+3
| | | | | | passed to kvm_open. Closes PR# 476. Submitted by: Jeffrey Hsu <hsu@freebsd.org>
* Remove unused include of utmp.h from print.c. Closes PR# 486.mpp1996-01-201-2/+1
| | | | Submitted by: Tom Samplonius <tom@haven.uniserve.com>
* Partially fixed negative and truncated "Avail" counts in df output.bde1996-01-141-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes PR943. ffs/ffs_vfsops.c: ffs_statfs() multiplied by (100 - minfree) as part of calculating the minfree percentage (complemented in 100%), so with the standard minfree of 8, it was broken for file systems of size >= 1TB/92 = 11GB. Use the standard freespace() macro instead. This also fixes a rounding bug (the "Avail" count was sometimes 1 too small). ffs/* (not fixed): The freespace() macro multiplies by minfree, so with the standard minfree of 8, it is broken for file systems of size >= 1TB/8 = 128GB. This bug is more serious since it affects block allocation. ffs/ffs_alloc.c (not fixed): Ordinary users are sometimes allowed to allocate 1 (partial) block too many so that the "Avail" count goes negative. E.g., if there is 1 fragment available and the file is fairly large, one more full block is allocated. df/df.c: ufs_df() used/uses essentially the same code as ffs_statfs(), so it had/has the same bugs. ufs_df() gratuitously replaced "Avail" counts of < 0 by 0, so it gave different results for non-mounted file systems in this case.
* oops. I forgot to add the "[-U username]" option to the usage string.peter1996-01-121-2/+2
|
* This commit was generated by cvs2svn to compensate for changes in r13122,peter1995-12-302-0/+0
| | | | which included commits to RCS files with non-trunk default branches.
* Print dev minor #'s > 255 in hex.joerg1995-12-301-3/+7
| | | | Reviewed by: jkh, kuku, phk
* Small man page tweaks:joerg1995-12-301-2/+12
| | | | | | | . mention the need for procfs . make it clear that default sorting is first by ctty, then by PID Submitted by: schweikh@ito.uni-stuttgart.de (Jens Schweikhardt)
* Implement a new option to ps.. `-U username'. This allows you topeter1995-12-262-4/+19
| | | | | | list the processes belonging to a particular user without having to use `-u' and grepping for the username. Basically you can now get a short `ps -x' like list (with more space for the command) for other users.
* Restored formatting from the old printf/printf.c.bde1995-12-141-5/+5
|
* The shell incorrectly gave & precedence over ;. This breaks thejoerg1995-12-101-23/+19
| | | | | | | | | | | traditional behaviour, and it violates Posix.2. Fixes PR # bin/880: /bin/sh incorrectly parse... Fixes also an earlier problem report about the shell not evaluating loops correctly. (Not files via GNATS.) Submitted by: nnd@itfs.nsk.su (Nickolay N. Dudorov)
* Move out some of the shell builtin bogosity from printf's source tojoerg1995-12-101-1/+10
| | | | sh's builtin/bltin.h.
* Fix my own brokeness for the colon operator, when one of the argumentsjoerg1995-11-181-33/+31
| | | | | was a valid integer. The actual decision between integer and string is now context-dependant on the operator being used.
* A fix for the "cd -" coredump on a brand new /bin/sh. The problem waspeter1995-11-141-2/+5
| | | | | | noticed on a NetBSD bugs mailing list but this is entirely my own work. Inspired by: Scott Reynolds <scottr@plexus.com>, for NetBSD
* Fixed descriptions of ignpar and parmrk.bde1995-11-111-3/+3
|
* Implement allowing 'set -v' in the middle of a script to work.peter1995-11-031-78/+103
| | | | | | | | | | | | | | | This means that a script containing: echo 1 set -v echo 2 will now produce output, like it does on SYSV machines and other 'proper' /bin/sh implementations.. This is done by a slight restructure of the input processor allowing it to read chunks from the file at a time, but process the data by line from the chunk. Obtained from: Christos Zoulas for NetBSD. <christos@deshaw.com>
* I add #include <sys/user.h>phk1995-10-282-2/+4
|
* Fix -h option:ache1995-10-281-2/+2
| | | | sense symlink even it is unresolved
* Change local to LC_ALL, there is no bitmaskache1995-10-261-2/+3
|
* Change locale to LC_ALL, there no bitmaskache1995-10-261-2/+3
|
* fix bad dependencies (LIBMATH -> LIBM)torstenb1995-10-251-2/+2
|
* Add missing reaction on LC_ALL and LC_COLLATEache1995-10-233-7/+14
|
* Add setlocale LC_CTYPEache1995-10-231-1/+3
|
* Remove unneded ctype.h everywhereache1995-10-2315-29/+17
| | | | Add setlocale LC_TIME
* Change LC_ALL to LC_CTYPE|LC_TIME - small optimizationache1995-10-231-2/+2
|
* Add setlocale LC_CTYPE|LC_TIMEache1995-10-231-1/+3
|
OpenPOWER on IntegriCloud