mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
11 lines
290 B
C++
11 lines
290 B
C++
#include <iostream>
|
|
#include "hash.hpp"
|
|
|
|
int main(int argc, char** argv) {
|
|
if (argc < 2 || !ghc::filesystem::exists(argv[1])) {
|
|
std::cout << "Usage: \"checksum <file>\"\n";
|
|
return 1;
|
|
}
|
|
std::cout << calculateHash(argv[1]) << std::endl;
|
|
return 0;
|
|
}
|