]>
git.cameronkatri.com Git - apple_cmds.git/blob - text_cmds/paste/paste.c
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Adam S. Moskowitz of Menlo Consulting.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 static const char copyright
[] =
39 "@(#) Copyright (c) 1989, 1993\n\
40 The Regents of the University of California. All rights reserved.\n";
45 static char sccsid
[] = "@(#)paste.c 8.1 (Berkeley) 6/6/93";
49 #include <sys/cdefs.h>
50 __FBSDID("$FreeBSD: src/usr.bin/paste/paste.c,v 1.14 2004/06/25 01:48:43 tjr Exp $");
52 #include <sys/types.h>
68 int parallel(char **);
69 int sequential(char **);
71 static void usage(void);
73 wchar_t tab
[] = L
"\t";
76 main(int argc
, char *argv
[])
83 setlocale(LC_CTYPE
, "");
86 while ((ch
= getopt(argc
, argv
, "d:s")) != -1)
90 len
= mbsrtowcs(NULL
, &arg
, 0, NULL
);
91 if (len
== (size_t)-1)
93 warg
= malloc((len
+ 1) * sizeof(*warg
));
97 len
= mbsrtowcs(warg
, &arg
, len
+ 1, NULL
);
98 if (len
== (size_t)-1)
100 delimcnt
= tr(delim
= warg
);
120 rval
= sequential(argv
);
122 rval
= parallel(argv
);
126 typedef struct _list
{
134 parallel(char **argv
)
144 for (cnt
= 0, head
= NULL
; (p
= *argv
); ++argv
, ++cnt
) {
145 if ((lp
= malloc(sizeof(LIST
))) == NULL
)
147 if (p
[0] == '-' && !p
[1])
149 else if (!(lp
->fp
= fopen(p
, "r")))
162 for (opencnt
= cnt
; opencnt
;) {
163 for (output
= 0, lp
= head
; lp
; lp
= lp
->next
) {
165 if (output
&& lp
->cnt
&&
166 (ch
= delim
[(lp
->cnt
- 1) % delimcnt
]))
170 if ((ich
= getwc(lp
->fp
)) == WEOF
) {
174 if (output
&& lp
->cnt
&&
175 (ch
= delim
[(lp
->cnt
- 1) % delimcnt
]))
180 * make sure that we don't print any delimiters
181 * unless there's a non-empty file.
185 for (cnt
= 0; cnt
< lp
->cnt
; ++cnt
)
186 if ((ch
= delim
[cnt
% delimcnt
]))
188 } else if ((ch
= delim
[(lp
->cnt
- 1) % delimcnt
]))
194 } while ((ich
= getwc(lp
->fp
)) != WEOF
&& ich
!= '\n');
195 if (ferror(lp
->fp
)) {
196 errx(EX_IOERR
, "Error reading %s", lp
->name
);
207 sequential(char **argv
)
210 int cnt
, failed
, needdelim
;
215 for (; (p
= *argv
); ++argv
) {
216 if (p
[0] == '-' && !p
[1])
218 else if (!(fp
= fopen(p
, "r"))) {
224 while ((ch
= getwc(fp
)) != WEOF
) {
227 if (delim
[cnt
] != '\0')
228 putwchar(delim
[cnt
]);
229 if (++cnt
== delimcnt
)
243 return (failed
!= 0);
252 for (p
= arg
, cnt
= 0; (ch
= *p
++); ++arg
, ++cnt
)
271 errx(1, "no delimiters specified");
278 (void)fprintf(stderr
, "usage: paste [-s] [-d delimiters] file ...\n");