2019. 4. 3. 13:51

로그 실시간 확인. Windows PowerShell 에서 tail 사용하기.

리눅스에서는 tail 이 존재 합니다. 

 

윈도우에서는 아래와 같이 powershell 에서 확인할수 있습니다. 

 

get-content ".\logexample2.log" -wait -tail 100

 

get-content 대신에

 

gc

cat

type 

 

를 사용해도 됩니다.