mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
tail: Default tail behavior with no arguments (#209)
Make tail assume you wanted 10 lines of output if no -n option was provided.
This commit is contained in:
parent
908d9458c7
commit
9687f1801b
Notes:
sideshowbarker
2024-07-19 13:42:43 +09:00
Author: https://github.com/bensloane 🔰 Commit: https://github.com/SerenityOS/serenity/commit/9687f1801b7 Pull-request: https://github.com/SerenityOS/serenity/pull/209
@ -7,6 +7,8 @@
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/CArgsParser.h>
|
||||
|
||||
#define DEFAULT_LINE_COUNT 10
|
||||
|
||||
int tail_from_pos(CFile& file, off_t startline, bool want_follow)
|
||||
{
|
||||
if (!file.seek(startline + 1))
|
||||
@ -95,6 +97,8 @@ int main(int argc, char *argv[])
|
||||
args_parser.print_usage();
|
||||
return 1;
|
||||
}
|
||||
} else {
|
||||
line_count = DEFAULT_LINE_COUNT;
|
||||
}
|
||||
|
||||
CFile f(values[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user