mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:37:35 +00:00
Userland: Add a simple /bin/head program.
This commit is contained in:
parent
8effdc807a
commit
b5a1ee1d3e
1 changed files with 26 additions and 0 deletions
26
Userland/head.cpp
Normal file
26
Userland/head.cpp
Normal file
|
@ -0,0 +1,26 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
// FIXME: Allow setting via command-line argument.
|
||||
int line_count = 10;
|
||||
|
||||
if (argc > 1) {
|
||||
for (int i = 1; i < argc; ++i) {
|
||||
if (argv[i][0] == '-') {
|
||||
line_count = atoi(&argv[i][1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (int line = 0; line < line_count; ++line) {
|
||||
char buffer[BUFSIZ];
|
||||
auto* str = fgets(buffer, sizeof(buffer), stdin);
|
||||
if (!str)
|
||||
break;
|
||||
fputs(str, stdout);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue