📜  windows tail 命令 powershell - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:08.044000             🧑  作者: Mango

代码示例1
cat FILENAME  -tail 200 // To show last 200 lines of a file
//Another Commmand
Get-Content FILENAME -tail 10 // To show last 10 lines of a file