view toys/posix/rmdir.c @ 776:cf101d432225

Getting the pwd -L behavior right is fiddly.
author Rob Landley <rob@landley.net>
date Sun, 30 Dec 2012 04:43:11 -0600
parents 786841fdb1e0
children 3d7526f6115b
line wrap: on
line source

/* rmdir.c - remove directory/path
 *
 * Copyright 2008 Rob Landley <rob@landley.net>
 *
 * See http://opengroup.org/onlinepubs/9699919799/utilities/rmdir.html

USE_RMDIR(NEWTOY(rmdir, "<1p", TOYFLAG_BIN))

config RMDIR
  bool "rmdir"
  default y
  help
    usage: rmdir [-p] [dirname...]
    Remove one or more directories.

    -p	Remove path.
*/

#include "toys.h"

static void do_rmdir(char *name)
{
  for (;;) {
    char *temp;

    if (rmdir(name)) {
      perror_msg("%s",name);
      return;
    }
    if (!toys.optflags) return;
    if (!(temp=strrchr(name,'/'))) return;
    *temp=0;
  }
}

void rmdir_main(void)
{
  char **s;

  for (s=toys.optargs; *s; s++) do_rmdir(*s);
}