We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be6a020 commit 30e1bcdCopy full SHA for 30e1bcd
src/subcommand/stats_main.cpp
@@ -382,6 +382,7 @@ int main_stats(int argc, char** argv) {
382
std::cout << " shell: " << sample_count.second.shell << std::endl;
383
}
384
} else {
385
+ std::cout << "#name\tcore\tprivate\tshell" << std::endl;
386
for (auto& sample_count : sample_counts) {
387
std::cout << sample_count.first << "\t" << sample_count.second.core << "\t" << sample_count.second.priv
388
<< "\t" << sample_count.second.shell << std::endl;
0 commit comments