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



                    






                                                       



                      






                                                     




                              
#include <iostream>

#include "hash.hh"
#include "shared.hh"
#include "help.txt.hh"


void printHelp()
{
    cout << string((char *) helpText, sizeof helpText);
}


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";