"윈도우 화면과 파일에 동시에 출력하기"의 두 판 사이의 차이

잔글 (로봇: 자동으로 텍스트 교체 (-<source lang='dos'> +<source lang='cli'>))
잔글 (로봇: 자동으로 텍스트 교체 (-C:\Users\jmnote> +C:\Users\zetawiki>))
11번째 줄: 11번째 줄:
;실행예시
;실행예시
<source lang='cli'>
<source lang='cli'>
PS C:\Users\jmnote> tcping -d -t 135.79.246.80 8000 | Tee-Object -file c:\tcping.txt
PS C:\Users\zetawiki> tcping -d -t 135.79.246.80 8000 | Tee-Object -file c:\tcping.txt


** Pinging continuously.  Press control-c to stop **
** Pinging continuously.  Press control-c to stop **

2015년 2월 12일 (목) 00:55 판

윈도우 화면과 파일에 동시에 출력하기
Tee-Object

1 방법: powershell

powershell에서 명령어 사용.

명령어
명령어 | Tee-Object -file 파일명
실행예시
PS C:\Users\zetawiki> tcping -d -t 135.79.246.80 8000 | Tee-Object -file c:\tcping.txt

** Pinging continuously.  Press control-c to stop **

2013:04:12 01:15:32 Probing 135.79.246.80:8000/tcp - Port is open - time=2.477ms
2013:04:12 01:15:33 Probing 135.79.246.80:8000/tcp - Port is open - time=2.483ms
... (생략)
→ 화면에 출력되고 파일에도 기록된다.

2 같이 보기

3 참고 자료