⚠️ Warning: This is a draft ⚠️

This means it might contain formatting issues, incorrect code, conceptual problems, or other severe issues.

If you want to help to improve and eventually enable this page, please fork RosettaGit's repository and open a merge request on GitHub.

==task clarification==

I understood this Rosetta Code task is to read a (or some) files, globally replace a specified text, and (essentially) change the input file(s).

Specifically, not just create a new (set) of changed files, but effectively, change the (original) input file(s).

Some programming examples copied the input files (after changing them) to a new set of output files, leaving the input file intact (with no changes). This makes the coding of the solution much more simpler, but it bypasses the crux of the task, since it doesn't change the file(s), but merely creates another set of files, leaving the user to perform the task of copying the newer changed files to (over) the old set of files, and then deleting the older set of (copied) changed files. -- [[User:Gerard Schildberger|Gerard Schildberger]] ([[User talk:Gerard Schildberger|talk]]) 18:01, 5 May 2016 (UTC)