Hi,
若允許會產出新檔的方式下,
以下script可刪除"最後一行",但若不是空白也會刪除,請自行評估運用.
透過 powershell,其中 input.txt 及 output.txt 前面要加路徑.
$text = [System.IO.File]::OpenText("input.txt").ReadToEnd()
$two = $text.substring($text.Length-2,2)
if ($two -eq "`r`n")
{
$newContent = $text.Substring(0, $text.Length-2)
$stream = [System.IO.StreamWriter]"output.txt"
$stream.write($newContent)
$stream.close()
}