본문 바로가기
비전공자 IT 이야기/TIL (Today I Learn)

[Powershell] Get-Content 실시간 로그 보기

by 제이 로그 2022. 3. 10.

Linux Bash 명령어의 tail과 동일한 Powershell 명령어 Get-Content

 

Linux Bash

tail -n 30 /logs/app.log

 

Powershell 

Get-Content C:\log\app.log -Wait -Tail 30

 

 

댓글