update: finishing the ex04 of the module 01

This commit is contained in:
Raphael 2024-11-06 16:14:44 +01:00
parent 08a23cc42b
commit afd6bd90af
3 changed files with 30 additions and 12 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/05 15:24:29 by rparodi #+# #+# */
/* Updated: 2024/11/05 22:02:35 by rparodi ### ########.fr */
/* Updated: 2024/11/06 16:09:06 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -27,6 +27,12 @@ int main(int argc, char *argv[])
return (1);
}
Sed new_sed = Sed(argv, &input);
std::ofstream output = output(new_sed.getFilename());
while (new_sed.line(output)){}
std::ofstream output(new_sed.getFilename());
if (!output.is_open()) {
std::cerr << "Error: Could not open the file for writing." << std::endl;
return 1;
}
while (new_sed.line(output))
{
}
}