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:
Ben Sloane 2019-06-06 14:28:58 -04:00 committed by Andreas Kling
parent 908d9458c7
commit 9687f1801b

View file

@ -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]);