#include #include #include #include #include std::vector readWordlist(std::string filePath) { std::vector map; std::ifstream file(filePath); if (file.is_open()) { std::string line; while (std::getline(file, line)) { map.push_back(line); } } else { std::cout << std::format("ERROR: failed op open '{}'\n", filePath); } return map; } int main(int argc, char *argv[]) { std::string path; if (argc == 2) { path = argv[1]; } else { path = "eff_large_wordlist.txt"; } std::vector wordlist = readWordlist(path); if (wordlist.size() == 0) { return 1; } std::cout << wordlist[0] << "\n"; }