about summary refs log blame commit diff
path: root/src/nix-hash.cc
blob: 77c169b9a95215e40f8ed4e43ebb412bb4256fd4 (plain) (tree)
1
2
3
4
5
6
7
8







                      






                                                     




                              
#include <iostream>

#include "hash.hh"
#include "shared.hh"


void run(Strings args)
{
    bool flat = false;
    for (Strings::iterator i = args.begin();
         i != args.end(); i++)
        if (*i == "--flat") flat = true;
        else
            cout << format("%1%\n") % (string) 
                (flat ? hashFile(*i) : hashPath(*i));
}


string programId = "nix-hash";