Move shell descriptions to the config system
[oweals/busybox.git] / miscutils / strings.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * strings implementation for busybox
4  *
5  * Copyright (c) 1980, 1987
6  *      The Regents of the University of California.  All rights reserved.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  * Original copyright notice is retained at the end of this file.
23  *
24  * Modified for BusyBox by Erik Andersen <andersen@codepoet.org>
25  * Badly hacked by Tito Ragusa <farmatito@tiscali.it>
26  */
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <getopt.h>
32 #include <unistd.h>
33 #include <ctype.h>
34 #include "busybox.h"
35
36 #define ISSTR(ch)       (isprint(ch) || ch == '\t')
37
38 int strings_main(int argc, char **argv)
39 {
40         int n=4, c, i, opt=0, a=0, status=EXIT_SUCCESS;
41         long t=0, count;
42         FILE *file;
43         char *string=NULL;
44
45         while ((i = getopt(argc, argv, "afon:")) > 0)
46                 switch(i)
47                 {
48                         case 'a':
49                                 break;
50                         case 'f':
51                                 opt+=1;
52                                 break;
53                         case 'o':
54                                 opt+=2;
55                                 break;
56                         case 'n':
57                                 n = bb_xgetlarg(optarg, 10, 1, INT_MAX);
58                                 break;
59                         default:
60                                 bb_show_usage();
61                 }
62
63         argc -= optind;
64         argv += optind;
65
66         i=0;
67
68         string=xmalloc(n+1);
69         string[n]='\0';
70         n-=1;
71
72         if(!argc )
73         {
74                 file = stdin;
75                 goto pipe;
76         }
77
78         for(a=0;a<argc;a++)
79         {
80                 if((file=fopen(argv[a],"r")))
81                 {
82 pipe:
83
84                         count=0;
85                         do
86                         {
87                                 c=fgetc(file);
88                                 if(ISSTR(c))
89                                 {
90                                         if(i==0)
91                                                 t=count;
92                                         if(i<=n)
93                                                 string[i]=c;
94                                         if(i==n)
95                                         {
96                                                 if(opt == 1 || opt == 3 )
97                                                         printf("%s: ", (!argv[a])? "{stdin}" : argv[a]);
98                                                 if(opt >= 2 )
99                                                         printf("%7lo ", t);
100                                                 printf("%s", string);
101                                         }
102                                         if(i>n)
103                                                 putchar(c);
104                                         i++;
105                                 }
106                                 else
107                                 {
108                                         if(i>n)
109                                                 puts("");
110                                         i=0;
111                                 }
112                                 count++;
113                         }
114                         while(c!=EOF);
115
116                         if(file!=stdin)
117                                 fclose(file);
118                 }
119                 else
120                 {
121                         bb_perror_msg("%s",argv[a]);
122                         status=EXIT_FAILURE;
123                 }
124         }
125         free(string);
126         exit(status);
127 }
128
129 /*
130  * Copyright (c) 1980, 1987
131  *      The Regents of the University of California.  All rights reserved.
132  *
133  * Redistribution and use in source and binary forms, with or without
134  * modification, are permitted provided that the following conditions
135  * are met:
136  * 1. Redistributions of source code must retain the above copyright
137  *    notice, this list of conditions and the following disclaimer.
138  * 2. Redistributions in binary form must reproduce the above copyright
139  *    notice, this list of conditions and the following disclaimer in the
140  *    documentation and/or other materials provided with the distribution.
141  *
142  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
143  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> 
144  *
145  * 4. Neither the name of the University nor the names of its contributors
146  *    may be used to endorse or promote products derived from this software
147  *    without specific prior written permission.
148  *
149  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
150  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
151  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
152  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
153  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
154  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
155  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
156  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
157  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
158  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
159  * SUCH DAMAGE.
160  */