I am using Get-Content (gc) here. I need to delete a set of lines defined by the start and end marker. But for some reasons, the command that I use does not work. Do you know what I am missing here?
Command that I have tried:
powershell -Command ((gc test.txt) -replace '"/#start.*#end/gms"','')
test.txt:
line1
line2
#start
line3
line4
#end
line5
Expected output:
line1
line2
line5
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…