-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlstype.cpp
45 lines (39 loc) · 1.32 KB
/
lstype.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include <string_view>
#include <filesystem>
#include <fstream>
#include <iostream>
#include <optional>
namespace fs = std::filesystem;
#ifndef VERSION
# define VERSION "unknonw"
#endif
std::optional<fs::path> getShabang(const fs::path path) {
auto f = std::ifstream(path);
std::string shebang;
std::getline(f, shebang);
if (!f.good() || shebang.size() < 3 || std::string_view {std::begin(shebang), std::begin(shebang) + 2} != "#!")
return std::nullopt;
return fs::path {std::begin(shebang) + 3, std::end(shebang)};
}
void print(char const *type, fs::path const &path) {
std::cout << std::setw(7) << std::right << type << ' ' << std::right << path.c_str() << '\n';
}
int main(int argc, char const **argv) {
if (argc != 1) {
if (argc == 2 && argv[1][0] == '-' && argv[1][1] == 'v') {
std::cout << argv[0] << ": v" VERSION << '\n';
return 0;
}
std::cerr << "Usage: " << argv[0] << " -h -v\n";
return 1;
}
for (auto const &entry : fs::directory_iterator(".")) {
if (entry.is_regular_file()) {
if (auto const shebang = getShabang(entry.path())) {
print(shebang->filename().c_str(), entry.path().filename());
continue;
}
print("0", entry.path().filename());
}
}
}