k9core

Coreutils for *nix operating systems [fork]
git clone git://bvnf.space/k9core.git
Log | Files | Refs | LICENSE

rmdir.c (275B)


      1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
     15
     16
     17
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

int
main(int argc, char *argv[])
{

	for(int i = 1; i < argc; i++) {
		if(rmdir(argv[i]) == -1) {
			fprintf(stderr, "rmdir: %s: %s\n", argv[i], strerror(errno));
			return 1;
		}
	}
	return 0;
}