about summary refs log tree commit diff
path: root/src/nix-hash/nix-hash.cc
blob: 77c169b9a95215e40f8ed4e43ebb412bb4256fd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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";