ydel

0.0.2 • Public • Published

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

/ydel/

    Package Sidebar

    Install

    npm i ydel

    Weekly Downloads

    1

    Version

    0.0.2

    License

    MIT

    Last publish

    Collaborators

    • s-a