mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 15:27:18 +00:00
1) The readme is out-of-date, and unreadable on github 2) Some tools have their own directories, some don't 3) Many tools have neither readme nor descriptions. 4) Some files are misplaced This reorganizes so that each tool has its own directory, even if it only has a single file (Hint: If you use a tool, please add/update READMEs) The master README is complete, and readable on github The tools are in alphabetical order within category. There are some cases where this probably isn't the right thing to do, e.g. where there are separate tools that do "to" and "from" conversions. Each tool has at least a 1-line description in the master readme This commit does not change any tool.
75 lines
2.5 KiB
C
75 lines
2.5 KiB
C
/* This program removes a string
|
|
|
|
Copyright (c) 1993-2001, Robert M. Supnik
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
copy of this software and associated documentation files (the "Software"),
|
|
to deal in the Software without restriction, including without limitation
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
ROBERT M SUPNIK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
Except as contained in this notice, the name of Robert M Supnik shall not
|
|
be used in advertising or otherwise to promote the sale, use or other dealings
|
|
in this Software without prior written authorization from Robert M Supnik.
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main (int argc, char *argv[])
|
|
{
|
|
int i, rmvlen;
|
|
char *ppos, *fpos, *tpos, *rmv, *ins, oname[256], line[256];
|
|
FILE *ifile, *ofile;
|
|
|
|
if ((argc < 4) || (argv[0] == NULL)) {
|
|
printf ("Usage is: strsub s1 s2 file [file...]\n");
|
|
exit (0); }
|
|
|
|
rmv = argv[1];
|
|
rmvlen = strlen (rmv);
|
|
ins = argv[2];
|
|
for (i = 3; i < argc; i++) {
|
|
strcpy (oname, argv[i]);
|
|
if (ppos = strrchr (oname, '.')) strcpy (ppos, ".new");
|
|
else strcat (oname, ".new");
|
|
ifile = fopen (argv[i], "r");
|
|
if (ifile == NULL) {
|
|
printf ("Error opening file: %s\n", argv[i]);
|
|
exit (0); }
|
|
ofile = fopen (oname, "w");
|
|
if (ofile == NULL) {
|
|
printf ("Error opening file: %s\n", oname);
|
|
exit (0); }
|
|
|
|
printf ("Processing file %s\n", argv[i]);
|
|
while (fgets (line, 255, ifile) != NULL) {
|
|
tpos = strstr (line, rmv);
|
|
if (tpos) {
|
|
*tpos = 0;
|
|
fputs (line, ofile);
|
|
fputs (ins, ofile);
|
|
fpos = tpos + rmvlen;
|
|
fputs (fpos, ofile);
|
|
}
|
|
else fputs (line, ofile);
|
|
}
|
|
fclose (ifile);
|
|
fclose (ofile);
|
|
}
|
|
return 0;
|
|
}
|