ladybird/Userland/dmesg.cpp

21 lines
483 B
C++
Raw Normal View History

#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;
2019-09-21 20:50:06 +02:00
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;
}
2019-09-21 20:50:06 +02:00
const auto& b = f->read_all();
2019-06-02 12:13:06 +02:00
for (auto i = 0; i < b.size(); ++i)
putchar(b[i]);
return 0;
}