“PowerShell Dodaj linię do początku pliku” Kod odpowiedzi

Dodaj nową linię na końcu tego pliku w PowerShell

Add-Content "C:\dotnet-helpers\DummyfiletoDelete.txt" "This is the last line"
Blue Buzzard

PowerShell Dodaj linię do początku pliku

# 1st create file with lines to be placed on top and then
Add-Content -Path "<path_of_file_with_top_lines_temp>" -Value (Get-Content "<path_of_original_file")
# content is in temp file
Move-Item -Path "<path_of_file_with_top_lines_temp>" -Destination "<path_of_original_file" -Force
Andreas Kuglgruber

Odpowiedzi podobne do “PowerShell Dodaj linię do początku pliku”

Pytania podobne do “PowerShell Dodaj linię do początku pliku”

Więcej pokrewnych odpowiedzi na “PowerShell Dodaj linię do początku pliku” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu