blob: e35d0a1feda3e3cdb3b1d7a83f05e310b914b17b (
plain) (
tree)
|
|
#include <iostream>
#include "hash.hh"
#include "shared.hh"
void run(Strings args)
{
for (Strings::iterator it = args.begin();
it != args.end(); it++)
cout << format("%1%\n") % (string) hashPath(*it);
}
string programId = "nix-hash";
|