Tim J. Robbins
7dd4ac68f1
Use err instead of errx when malloc fails. "malloc" is not a helpful
...
error message.
2002-07-05 09:28:13 +00:00
Johan Karlsson
b68725e33f
Restore copyright and RCSID.
...
Remove duplicate $FreeBSD$, $NetBSD$.
Submitted by: mike
Approved by: sheldonh (mentor)
2002-07-04 12:29:39 +00:00
Tim J. Robbins
54411faf6f
Update another mention of <CR><CR> I missed the first time around (rev 1.2)
2002-07-04 05:16:19 +00:00
Johan Karlsson
e9a5542330
Reconnect whereis
...
Approved by: sheldonh (mentor)
2002-07-03 19:23:50 +00:00
Johan Karlsson
b81a9775c7
Switch to c version
...
Approved by: sheldonh (mentor)
2002-07-03 19:22:52 +00:00
Johan Karlsson
8d430958db
compact synopsis
...
s/program [program ...]/program .../
s/program [...]/program .../
Approved by: sheldonh (mentor)
2002-07-03 19:20:59 +00:00
Johan Karlsson
058e185122
Remove -p flag.
...
OpenBSD's implementation lacks -p, and we don't want to
support the option now, only to lose it if/when we later
switch to OpenBSD's implementation.
This functionality is provided by which(1).
Approved by: sheldonh (mentor)
2002-07-03 19:19:54 +00:00
Johan Karlsson
9d1b456e66
Add __FBSDID.
...
Remove __COPYRIGHT, __RCSID which caused an assembler warning.
Approved by: sheldonh (mentor)
2002-07-03 19:17:59 +00:00
Johan Karlsson
b78dcb87c0
Change to NetBSDs version of whereis.
...
Approved by: sheldonh (mentor)
Obtained from: NetBSD
2002-07-03 19:16:31 +00:00
Johan Karlsson
5e3fde98fc
Disconnect whereis while importing version from NetBSD
...
Approved by: sheldonh (mentor)
2002-07-03 19:05:15 +00:00
Tim J. Robbins
bfed7b6485
Note that two carriage returns aren't required after entering the
...
initial setup anymore (since process.c rev. 1.25). Add $FreeBSD$.
MFC after: 2 weeks
2002-07-03 14:42:53 +00:00
Tim J. Robbins
8523e9a677
Avoid checking whether each line is the last line of the file when we don't
...
need to know. Instead, check when we are trying to match a "$" address.
This does not change the way sed processes regular files, but makes it behave
more sensibly when used interactively.
PR: 40101
MFC after: 2 weeks
2002-07-03 14:38:27 +00:00
Tim J. Robbins
5a3232258e
Don't let the pattern space become null if the `x' command is used when the
...
hold space is null; some functions assume it's never null.
MFC after: 3 days
2002-07-03 14:32:43 +00:00
Ruslan Ermilov
ff9a78c08e
mdoc(7) police: added missing markup bits, lowercased argument names.
2002-07-03 12:24:11 +00:00
SUZUKI Shinsuke
80317922b5
fixed typo.
...
obtained from: KAME
MFC after: 3 days
2002-07-03 06:48:12 +00:00
Tom Rhodes
126aa65832
Fix grammar in 1 sentence
...
Reword 'Usually faster in most cases' to 'and is faster in most cases'
PR: 40024 (partly)
2002-07-02 21:13:15 +00:00
Ruslan Ermilov
8479adc1d3
Reimplemented bsd.nls.mk using bsd.files.mk and bsd.links.mk.
...
Provided the (previously missing) dependency on source files
for intermediate .msg files.
Provided the default for NLSSRCDIR (defaults to .CURDIR).
Slightly changed the API: NLS should now list plain locale
names, without the .msg suffix.
When included from bsd.prog.mk, NLSNAME defaults to PROG.
2002-07-02 12:37:09 +00:00
Jonathan Mini
0830bd135e
Add -g option, which restricts printing of the gecos fields to just the user's
...
real name.
PR: bin/39462
Submitted by: Mike Makonnen <makonnen@pacbell.net>
Obtained from: NetBSD
MFC after: 1 week
2002-07-02 08:00:20 +00:00
Juli Mallett
f201bc9c84
Back out my minorly disputed and possibly not well thought out changes to how
...
arguments are processed, at least temporarily.
2002-07-01 18:03:30 +00:00
Mark Murray
301777f2d2
Modernise; ISOify, use __FBSDID(), use headers instead of hand-declaring.
...
Fix easy warnings.
2002-07-01 16:40:33 +00:00
Johan Karlsson
16429f2c6c
Add my DoB
...
Approved by: sheldonh (mentor)
2002-07-01 16:02:05 +00:00
Tim J. Robbins
99a84ce108
Declare environ as char **environ like in environ(7), not char *environ[].
...
This corrects a problem whereby xargs could not walk the environment table
to count the amount of space it used, and treated it as if it were empty.
This problem was introduced in rev 1.15.
MFC after: 2 days
2002-07-01 03:21:05 +00:00
Juli Mallett
2ea0fdfb65
Nuke src/usr.bin/help in favor of projects/sccs/help (repo copied).
2002-06-30 23:31:21 +00:00
Juli Mallett
c948c0582c
Minor cleanup: ANSI C function declarations, use argc after getopt(3) to check
...
for remaining arguments, rather than checking for *argv being a boolean truth.
Instead of using an empty case to check for -f- to mean "read stdin", and have
stdin reopned otherwise, use a FILE* for the mbox, and assign it to stdin when
we mean to use stdin, otherwise fopen(3). Kill `register' qualifier.
2002-06-30 17:36:54 +00:00
Juli Mallett
549e1e057c
Make it possible to have this (basename(1)) perform basename(3) on multiple
...
files. The traditional behaviour, 'basename string .suffix', is preserved,
however a suffix may now also be specified via a getopt(3) option, -s, such
that if it is specified in that way, all string arguments follow. There is
also a new flag, -a, which allows a user to say "yes, please basename(3) on
all arguments". Update manual to reflect this unobtrusively.
Reviewed by: obrien
2002-06-30 13:40:35 +00:00
David E. O'Brien
64567a4162
Consistently wrap CSRG SCM ID.
...
Requested by: bde
2002-06-30 09:24:25 +00:00
Tim J. Robbins
721da592c4
Handle relative and absolute pathnames (anything with a `/' in it) in the same
...
way as execve(2), and the old perl which(1).
PR: 35718
2002-06-30 06:02:39 +00:00
Tim J. Robbins
8c821782f8
Treat empty PATH elements as "." for tradition and consistency with the
...
old Perl which(1) script.
PR: 35719
2002-06-30 05:48:50 +00:00
David E. O'Brien
77c8bf7cae
Consistently use FBSDID
2002-06-30 05:34:21 +00:00
David E. O'Brien
e026a48c34
Consistently use FBSDID
2002-06-30 05:25:07 +00:00
Juli Mallett
5cdd3a031f
Untie help and sccs from the build. sccs has been repo copied into
...
projects/sccs/sccs/, to accompany projects/sccs/sccscmds, and help will
be dying shortly.
These programs will not be a part of 5.0-RELEASE, at least not in their
current form. They'll either end up in src/contrib or ports.
Submitted by: obrien
2002-06-29 22:45:44 +00:00
Tim J. Robbins
e12c2e18a5
Avoid truncating filenames with snprintf().
2002-06-29 05:31:26 +00:00
Andrey A. Chernov
55f0377c44
Simplify TERM handling since now libutil not overwrites existen TERM for "term"
2002-06-28 22:56:31 +00:00
Tim J. Robbins
4633a1ab99
Refer to utilities, not commands, for consistency with env(1), nice(1), etc.
2002-06-28 09:34:46 +00:00
Tim J. Robbins
8b4f995acc
Document the fairly obvious effects of the PATH environment variable.
2002-06-28 09:31:03 +00:00
Tim J. Robbins
6ec9d03768
Discourage use of env(1)'s "-" flag by moving its description to the
...
Compatibility section of the manual page.
2002-06-28 09:23:39 +00:00
Andrey A. Chernov
79a20d3b58
Overwrite "term" from login.conf(5) for any known TERM
2002-06-28 04:59:39 +00:00
Matthew Dillon
df151480c8
Add my entry to the mojo file.
2002-06-28 04:26:07 +00:00
CHOI Junho
d3900e1fed
add my entry.
2002-06-28 01:42:45 +00:00
Juli Mallett
21e21aad32
Increment morefiles, balance braces. This should really be using getopt(3).
2002-06-27 21:11:19 +00:00
Juli Mallett
f63eec78e4
Instead of not using argc and doing other great evil, check for no arguments
...
in main() and print usage, or if there are too many arguments, handle that
there, too.
2002-06-27 21:01:32 +00:00
Juli Mallett
10b9342105
Update my name here, pointed out by grep(1).
2002-06-27 19:05:47 +00:00
Tim J. Robbins
126b0a6341
Indicate that the semicolon that terminates argument lists should be in
...
its own argument for -ok and -okdir.
2002-06-26 08:03:54 +00:00
Tim J. Robbins
cc81b6b0fb
Make it more obvious that the semicolon that terminates -exec and -execdir
...
argument lists must be in an argument by itself, not on the end of the
previous one.
2002-06-26 07:55:18 +00:00
Matthew Dillon
552116c927
Make limits(1) aware of the new vmemoryuse resource limit.
...
Submitted by: sheldonh
2002-06-26 03:43:25 +00:00
Sheldon Hearn
4ece3f34aa
Fix mdoc nits in preparation for RLIMIT_VMEM support:
...
* add missing Ar macro for one instance of limitflags
* fix indentation problem (not perfect, but then this is one _very_
awkward manpage mark up properly)
2002-06-26 01:40:15 +00:00
Matthew Dillon
b22ac97b33
This is Alexander Kabaev's patch to solve the signal problem with su
...
(see 'zsh exits upon ^C' thread). This may be temporary be he's been
running it for a year without incident so we should be golden with it.
Approved by: des
2002-06-26 00:42:40 +00:00
Matthew Dillon
6592cfde7a
Backout 1.51 on DES's request.
...
Approved by: des
2002-06-26 00:38:39 +00:00
Tim J. Robbins
42676968c6
Sort sections, and refer to sed as a utility, not a function.
2002-06-25 08:36:19 +00:00
Hye-Shik Chang
2a5454cd3d
Add ICBM coordinates and birthday reminder
...
Reviewed by: cjh (mentor)
Approved by: cjh (mentor)
2002-06-25 08:15:35 +00:00