summaryrefslogtreecommitdiff
path: root/Userland/dmesg.cpp
blob: 01b257f04404b2f99eaad36c0c0c9e3e015de3cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <LibCore/CFile.h>
#include <assert.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>

int main(int argc, char** argv)
{
    (void)argc;
    (void)argv;
    auto f = CFile::construct("/proc/dmesg");
    if (!f->open(CIODevice::ReadOnly)) {
        fprintf(stderr, "open: failed to open /proc/dmesg: %s\n", f->error_string());
        return 1;
    }
    const auto& b = f->read_all();
    for (auto i = 0; i < b.size(); ++i)
        putchar(b[i]);
    return 0;
}