mirror of
https://github.com/GerbilSoft/zlib-ng.git
synced 2025-06-18 11:35:35 -04:00

This is useful when zlib-ng is embedded into another library, such as ITK: https://itk.org/ Closes #1025. Co-authored-by: Mika Lindqvist <postmaster@raasu.org>
16 lines
458 B
Plaintext
16 lines
458 B
Plaintext
strInputFileName = Wscript.Arguments(0)
|
|
strOutputFileName = Wscript.Arguments(1)
|
|
strOldText = Wscript.Arguments(2)
|
|
strNewText = Wscript.Arguments(3)
|
|
|
|
Set objFSO = CreateObject("Scripting.FileSystemObject")
|
|
Set objFile = objFSO.OpenTextFile(strInputFileName, 1)
|
|
|
|
strText = objFile.ReadAll
|
|
objFile.Close
|
|
strNewText = Replace(strText, strOldText, strNewText)
|
|
|
|
Set objFile = objFSO.OpenTextFile(strOutputFileName, 2, True)
|
|
objFile.Write strNewText
|
|
objFile.Close
|