Hi,How would you replace a piece of text in a file with another one and persist the change on disk?Right now, I have:file := 'path' asFileReferencecontents := file readStreamDo: #contents.newContents := contents copyReplaceAll: 'PATTERN' with: 'TARGET'.��