Finished Batch + Minor improvements

This commit is contained in:
2025-07-29 20:22:17 +02:00
parent f54a3ba309
commit f93c463647
8 changed files with 80 additions and 18 deletions

View File

@ -14,9 +14,11 @@ namespace fsh {
virtual void run(std::istream& in, std::ostream& out, ArgManager& args) override {
std::string s;
std::string o;
while (std::getline(in, s)) { o += s + "\n"; }
out << o;
char c;
while (in.get(c)) {
s+=c;
}
out << s;
}
};