Skip to content

s-a/ydel

Repository files navigation

ydel NPM version Build Status Dependency Status Coverage percentage

Global shell command to delete files and folder usings globs.

Installation

$ npm install [--save|-g] ydel

Usage

Bash

$ ydel ./../shelljs !../shelljs/.git;
$ ls -a ./../shelljs/;

# =>   ..  .git

Node

"use strict";

var YDel = require("ydel");
var ydel = new YDel();
var Cli = new require("n-cli");
var cli = new Cli({
  handleUncaughtException : false,
  argv : ["./test", "--verbose"]
});
describe("ydel", function () {
  it("should del!", function () {
    ydel.del(cli);
  });
});

License

MIT © s-a

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published