aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/paste
Commit message (Collapse)AuthorAgeFilesLines
* General further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-1/+3
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 3-Clause license. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Special thanks to Wind River for providing access to "The Duke of Highlander" tool: an older (2014) run over FreeBSD tree was useful as a starting point. Notes: svn path=/head/; revision=326025
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* Renumber copyright clause 4Warner Losh2017-02-282-2/+2
| | | | | | | | | | | | Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point. Submitted by: Jan Schaumann <jschauma@stevens.edu> Pull Request: https://github.com/freebsd/freebsd/pull/96 Notes: svn path=/head/; revision=314436
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Updated dependenciesSimon J. Gerraty2014-05-161-1/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=266219
| * Updated dependenciesSimon J. Gerraty2014-05-101-0/+2
| | | | | | | | Notes: svn path=/projects/bmake/; revision=265802
| * Updated dependenciesSimon J. Gerraty2013-03-111-0/+1
| | | | | | | | Notes: svn path=/projects/bmake/; revision=248169
| * Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+19
|/ | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* Mark global functions and/or variables in paste(1) static where possible.Ed Schouten2011-11-061-9/+9
| | | | | | | This allows compilers and static analyzers to more thorough analysis. Notes: svn path=/head/; revision=227242
* Remove the advertising clause from UCB copyrighted files in usr.bin. ThisJoel Dahl2010-12-112-8/+0
| | | | | | | | | | | | is in accordance with the information provided at ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change Also add $FreeBSD$ to a few files to keep svn happy. Discussed with: imp, rwatson Notes: svn path=/head/; revision=216370
* Revert most part of 200420 as requested, as more review and polish isXin LI2009-12-131-0/+3
| | | | | | | needed. Notes: svn path=/head/; revision=200462
* Remove unneeded header includes from usr.bin/ except contributed code.Xin LI2009-12-111-3/+0
| | | | | | | Tested with: make universe Notes: svn path=/head/; revision=200420
* WARNS=6 chocked on unitialized variable.Philippe Charnier2006-09-121-1/+1
| | | | Notes: svn path=/head/; revision=162239
* Sort sections.Ruslan Ermilov2005-01-181-2/+2
| | | | Notes: svn path=/head/; revision=140420
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-1/+1
| | | | Notes: svn path=/head/; revision=140368
* mdoc(7) fixes.Ruslan Ermilov2004-07-071-1/+1
| | | | Notes: svn path=/head/; revision=131754
* Add support for multibyte characters in input files and delimiterTim J. Robbins2004-06-252-31/+48
| | | | | | | | | strings (arguments to the -d option.) This involves backing out paste.c rev. 1.13 until we have a version of fgetln() that operates on wide character streams. Notes: svn path=/head/; revision=131076
* Fixed the abuses of .Ql visible on stderr in troff mode.Ruslan Ermilov2002-12-231-2/+2
| | | | | | | PR: docs/37176 Notes: svn path=/head/; revision=108221
* mdoc(7) police: markup polishing.Ruslan Ermilov2002-11-261-1/+3
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107276
* Fix typos; each file has at least one s/seperat/separat/Jens Schweikhardt2002-08-111-1/+1
| | | | | | | | | | | | | (I skipped those in contrib/, gnu/ and crypto/) While I was at it, fixed a lot more found by ispell that I could identify with certainty to be errors. All of these were in comments or text, not in actual code. Suggested by: bde MFC after: 3 days Notes: svn path=/head/; revision=101677
* paste(1) appeared at least as early as 32v.Tim J. Robbins2002-06-111-0/+5
| | | | Notes: svn path=/head/; revision=98112
* Add another example for using paste(1) since tjr seemed to want more examplesJuli Mallett2002-06-101-0/+7
| | | | | | | | on IRC. This one is to create a colon seperated list of directories from find(1), suitable for use in the shell's PATH. Notes: svn path=/head/; revision=98090
* Add an EXAMPLES section with three examples. Document the problem withTim J. Robbins2002-06-101-0/+17
| | | | | | | multibyte characters and the -d option in a BUGS section. Notes: svn path=/head/; revision=98089
* Use fgetln(3) to handle lines of unlimited length instead of aTim J. Robbins2002-05-241-15/+15
| | | | | | | | | getc/putc loop. Suggested by: dd Notes: svn path=/head/; revision=97233
* P1003.2 forbids imposing any limit on line lengths; read character byTim J. Robbins2002-05-241-24/+22
| | | | | | | character instead of manually buffering each line. Notes: svn path=/head/; revision=97230
* Exit with non-zero status if any files specified could not be openedTim J. Robbins2002-05-241-9/+15
| | | | | | | when -s option is given (SUSv3). Notes: svn path=/head/; revision=97223
* Clean up malloc(3)'s argument. Remove casts which do nothing when we'reJuli Mallett2002-05-171-2/+2
| | | | | | | | | | using sizeof() anyway. Use slightly more consistent (per-file) error reporting for malloc(3) returning NULL. If "malloc failed" was being printed, don't use err(3). If a NULL format is being used, use err(3). In one case errx(3) was being used with strerror(3), so just use err(3). Notes: svn path=/head/; revision=96785
* More low hanging warnings fruit; ANSIfy, de-register, constify.Mark Murray2002-04-281-19/+17
| | | | Notes: svn path=/head/; revision=95626
* remove __PWarner Losh2002-03-221-4/+4
| | | | Notes: svn path=/head/; revision=92921
* When invoked with no file arguments, display usage.Mike Barcroft2002-03-201-4/+7
| | | | | | | | | | Submitted by: Tim J. Robbins <tim@robbins.dropbear.id.au> PR: 36074 Use new ID scheme. Notes: svn path=/head/; revision=92772
* Cross-reference between lam(1) and paste(1). Add a STANDARDS section toGarrett Wollman2001-09-211-2/+3
| | | | | | | | | | lam(1) indicating that paste(1) is a standard way to do some of the same things. MFC after: 1 week Notes: svn path=/head/; revision=83745
* mdoc(7) police: utilize the new .Ex macro.Ruslan Ermilov2001-08-151-3/+1
| | | | Notes: svn path=/head/; revision=81687
* Remove whitespace at EOL.Dima Dorfman2001-07-151-1/+1
| | | | Notes: svn path=/head/; revision=79755
* mdoc(7) police: use the default ``file ...'' feature of the .Ar macro.Ruslan Ermilov2001-02-131-1/+1
| | | | Notes: svn path=/head/; revision=72432
* Put flags under .Fl. Add DIAGNOSTICS section namePhilippe Charnier2000-03-261-3/+7
| | | | Notes: svn path=/head/; revision=58617
* $Id$ -> $FreeBSD$Peter Wemm1999-08-282-2/+2
| | | | Notes: svn path=/head/; revision=50477
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-07-121-0/+1
| | | | | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde Notes: svn path=/head/; revision=48792
* Add #include <stdlib.h> to get prototype for malloc(). Without this,John Birrell1998-02-201-1/+2
| | | | | | | | the compiler assumes an int return. On alpha this is enough to ruin ya day. Notes: svn path=/head/; revision=33644
* Remove bogus malloc() decl.Satoshi Asami1997-08-051-2/+2
| | | | Notes: svn path=/head/; revision=27907
* Use err(3). Add prototypes. Silent -Wall.Philippe Charnier1997-07-312-41/+39
| | | | Notes: svn path=/head/; revision=27787
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-1/+1
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24360
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-273-0/+375
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590