mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.6 KiB
77 lines
1.6 KiB
/* #includes */ /*{{{C}}}*//*{{{*/
|
|
#include "config.h"
|
|
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "getopt_.h"
|
|
#include "cpmfs.h"
|
|
|
|
#ifdef USE_DMALLOC
|
|
#include <dmalloc.h>
|
|
#endif
|
|
/*}}}*/
|
|
|
|
const char cmd[]="cpmrm";
|
|
|
|
int main(int argc, char *argv[]) /*{{{*/
|
|
{
|
|
/* variables */ /*{{{*/
|
|
const char *err;
|
|
const char *image;
|
|
const char *format;
|
|
const char *devopts=NULL;
|
|
int c,i,usage=0,exitcode=0;
|
|
struct cpmSuperBlock drive;
|
|
struct cpmInode root;
|
|
int gargc;
|
|
char **gargv;
|
|
/*}}}*/
|
|
|
|
/* parse options */ /*{{{*/
|
|
if (!(format=getenv("CPMTOOLSFMT"))) format=FORMAT;
|
|
while ((c=getopt(argc,argv,"T:f:h?"))!=EOF) switch(c)
|
|
{
|
|
case 'T': devopts=optarg; break;
|
|
case 'f': format=optarg; break;
|
|
case 'h':
|
|
case '?': usage=1; break;
|
|
}
|
|
|
|
if (optind>=(argc-1)) usage=1;
|
|
else image=argv[optind++];
|
|
|
|
if (usage)
|
|
{
|
|
fprintf(stderr,"Usage: %s [-f format] [-T dsktype] image pattern ...\n",cmd);
|
|
exit(1);
|
|
}
|
|
/*}}}*/
|
|
/* open image */ /*{{{*/
|
|
if ((err=Device_open(&drive.dev, image, O_RDWR, devopts)))
|
|
{
|
|
fprintf(stderr,"%s: cannot open %s (%s)\n",cmd,image,err);
|
|
exit(1);
|
|
}
|
|
if (cpmReadSuper(&drive,&root,format)==-1)
|
|
{
|
|
fprintf(stderr,"%s: cannot read superblock (%s)\n",cmd,boo);
|
|
exit(1);
|
|
}
|
|
/*}}}*/
|
|
cpmglob(optind,argc,argv,&root,&gargc,&gargv);
|
|
for (i=0; i<gargc; ++i)
|
|
{
|
|
if (cpmUnlink(&root,gargv[i])==-1)
|
|
{
|
|
fprintf(stderr,"%s: can not erase %s: %s\n",cmd,gargv[i],boo);
|
|
exitcode=1;
|
|
}
|
|
}
|
|
cpmUmount(&drive);
|
|
exit(exitcode);
|
|
}
|
|
/*}}}*/
|
|
|