Hey all, I am trying to write a script that will take a mask in, such as
+.*.*.*
which will run on a text file containing only a version number, like:
1.0.0.0
and will update the text file according to the mask. The output should be
2.0.0.0.
AND IT IS. But putting the result on the...