exports.unlink = function(path) {
  return function(next) {
    fs.unlink(path, done(next));
  };
};