mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
cut: Accept input from stdin if no files are given
This commit is contained in:
parent
4c48c9d69d
commit
6cb6e47779
Notes:
sideshowbarker
2024-07-19 05:13:18 +09:00
Author: https://github.com/mattco98 Commit: https://github.com/SerenityOS/serenity/commit/6cb6e477799 Pull-request: https://github.com/SerenityOS/serenity/pull/2681 Reviewed-by: https://github.com/linusg
1 changed files with 15 additions and 8 deletions
|
@ -164,12 +164,13 @@ static void expand_list(Vector<String>& tokens, Vector<Index>& indexes)
|
||||||
|
|
||||||
static void cut_file(const String& file, const Vector<Index>& byte_vector)
|
static void cut_file(const String& file, const Vector<Index>& byte_vector)
|
||||||
{
|
{
|
||||||
FILE* fp = nullptr;
|
FILE* fp = stdin;
|
||||||
fp = fopen(file.characters(), "r");
|
if (!file.is_null()) {
|
||||||
|
fp = fopen(file.characters(), "r");
|
||||||
if (!fp) {
|
if (!fp) {
|
||||||
fprintf(stderr, "cut: Could not open file '%s'\n", file.characters());
|
fprintf(stderr, "cut: Could not open file '%s'\n", file.characters());
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
char* line = nullptr;
|
char* line = nullptr;
|
||||||
|
@ -195,7 +196,9 @@ static void cut_file(const String& file, const Vector<Index>& byte_vector)
|
||||||
|
|
||||||
if (line)
|
if (line)
|
||||||
free(line);
|
free(line);
|
||||||
fclose(fp);
|
|
||||||
|
if (!file.is_null())
|
||||||
|
fclose(fp);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
|
@ -227,12 +230,16 @@ int main(int argc, char** argv)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (files.is_empty() || byte_list == "")
|
if (byte_list == "")
|
||||||
print_usage_and_exit(1);
|
print_usage_and_exit(1);
|
||||||
|
|
||||||
Vector<Index> byte_vector;
|
Vector<Index> byte_vector;
|
||||||
expand_list(tokens, byte_vector);
|
expand_list(tokens, byte_vector);
|
||||||
quick_sort(byte_vector, [](auto& a, auto& b) { return a.m_from < b.m_from; });
|
quick_sort(byte_vector, [](auto& a, auto& b) { return a.m_from < b.m_from; });
|
||||||
|
|
||||||
|
if (files.is_empty())
|
||||||
|
files.append(String());
|
||||||
|
|
||||||
/* Process each file */
|
/* Process each file */
|
||||||
for (auto& file : files)
|
for (auto& file : files)
|
||||||
cut_file(file, byte_vector);
|
cut_file(file, byte_vector);
|
||||||
|
|
Loading…
Reference in a new issue