So make the scripts more readable, I would like to split them into several lines. Is this possible in PowerShell notation?
For example, take this:
(GC myfile.txt).Replace('a',b').Replace('c','d').Replace('e','f') | SC newfile.txt
And write it like this:
(GC myfile.txt).Replace('a',b') .Replace('c','d') .Replace('e','f') | SC newfile.txt
I tried using backticks (`) and they do not work. Are there any options? I assume PowerShell v3 +
source share