-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
31 lines (23 loc) · 733 Bytes
/
main.cpp
File metadata and controls
31 lines (23 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <iostream>
#include <vector>
#include <string>
#include "libsearch.hpp"
#include <experimental/filesystem>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::experimental::filesystem::directory_iterator;
using std::experimental::filesystem::recursive_directory_iterator;
int main(int argc, char *argv[]) {
string path = "/usr/include";
string sname;
if (argc < 2) {
cout << "Enter the name to look for" << endl;
return EXIT_SUCCESS;
}
else
sname.assign(argv[1]);
cout << "Looking for '" << sname << "' in " << path << endl;
for (const auto & file : directory_iterator(path)) {};
run_search(path, sname);
return EXIT_SUCCESS;
}