home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************
-
-
- gfind.c -- find strings in filenames which match wildcard
-
-
- synopsis: This program expands the wildcard input
- to all files and outputs them to the standard
- output.
-
- gfind [string] [file] <options> to find string in file
- where string can include ? or c* for wild character
- file can include ? or * characters
-
- options: -n output line number found
- -c search case sensitive
- -f output file name second (for sort)
- -F output file name first
- -s output string name
- -x suppress output of text line found in
-
- default is: -n
-
- rev date by description
- ---- -------- --- ----------------------------
- 0001 02/10/85 jlk header
-
- *****************************************************************/
-
- #include <stdio.h>
- #include "blackstr.h"
-
- char *fptr[200],fbuff[8192],temp[MAXLINE];
- char *(*search)(); /* pointer to match function */
-
- main(argc,argv)
- int argc;
- char *argv[];
- {
- int i,fcnt,opt;
- char str[80],*ptr;
- if(argc<3)
- {
- printf("GFIND: -- [string] [file] required.");
- exit();
- }
- strcpy(str,argv[1]);
- ptr = argv[2]; /* point to file name */
- if(st_wild(ptr))
- {
- fcnt = fl_files(fbuff,ptr,TRUE); /* get wildcard names */
- st_ptrs(fbuff,fptr,fcnt); /* pointers to fptr */
- }
- else {
- fptr[0] = fbuff; /* put file name in fbuff */
- strcpy (fptr[0],argv[2]);
- fptr[1] = 0;
- fcnt = 1;
- }
- /*
- Get options
- */
- i = 0;
- opt = get_opts(argc,argv);
- /*
- Now search files
- */
- while(fptr[i])
- {
- fstrfile(fptr[i],str,opt);/* all parms, string first */
- ++i;
- }
- if(!fcnt)
- {
- printf("No files found. ");
- exit();
- }
- }
-
- /****************************
- fstrfile(fnam,strptr,opt) find strings in file
- ****************************/
- fstrfile(fnam,strptr,opt)
- char *fnam,*strptr;
- int opt;
- {
- char buff[139];
- char *bptr;
- int ln,i,lf;
- FILE *fp;
- extern char *(*search)();
- lf =i= 0;
- ln = 1;
- strupr(fnam);
- printf("\n\r ---- %s \n\r",fnam);
- if(fp=fopen(fnam,"r"))
- while(fgets(buff,138,fp))
- {
- if(bptr = (*search)(buff,strptr))
- {
- lf = FALSE;
- if(opt&0x80)
- printf("%s/ ",fnam);
- if(opt&02)
- printf("%s/ ",strncpy(temp,bptr,strlen(strptr)));
- if(opt&0x01)
- printf("%s/ ",fnam); /* for str first */
- if(opt&0x04)
- printf("%4d/ ",ln);
- if(opt&0x08)
- {
- printf("%s\n\r",buff);
- lf = TRUE;
- }
- if(!lf)
- printf("\n\r");
- }
- ++ln;
- i=0;
- } else printf("\n\r ERROR file not found -- %s",fnam);
- fclose(fp);
- return;
- }
-
-
- /*****************************
- get_opts(nopt,optr)
- ******************************/
- get_opts(nopt,optr)
- int nopt;
- char **optr;
- {
- int i,opt;
- char *ptr;
- extern char *(*search)();
- extern char *st_instr(),*st_instri();
- opt = 8; /* default to print text line */
- search = st_instri; /* ignore case is default */
- if(nopt<=3)
- return(12); /* text and line number */
- for(i=3; i<nopt; ++i)
- {
- ptr = optr[i];
- switch (ptr[1]) {
- case 'c':
- search = st_instr;
- break;
- case 'l':
- case 'n':
- opt |= 4; /* line number */
- break;
- case 'f':
- opt |= 1; /* file name */
- break;
- case 's':
- opt |= 2; /* string name */
- break;
- case 'x':
- opt &= 0xf7; /* no text line */
- break;
- case 'F':
- opt |= 0x80; /* file name first */
- break;
- };
- }
- return(opt);
- }