Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Github
- Database
- cloud
- suricata
- ChatGPT
- git
- GoogleDrive
- VSCode
- Resnet
- C언어
- KAKAO
- Powershell
- Spring Boot
- 국가과제
- 고등학생 대상
- API
- Python
- colab
- LINUX MASTER
- Machine Learning
- OSS
- Spring
- 코딩도장
- Rocky Linux
- rnn
- 크롤링 개발
- 인터넷의이해
- ICT멘토링
- Docker
- Kubernetes
Archives
- Today
- Total
코딩두의 포트폴리오
PowerShell - Format 출력형식 본문
출력형식
- Format-wide: 기본속성을 출력
- Format-List: 속성을 리스트 형태로 출력
- Format-Table: 속성을 테이블 형식으로 출력
- Fromat-Custom: 모든 속성과 속성들의 계층적 구조 출력
Get-Process 실행 시 현재 목록 확인
Get-Process | Format-Wide 실행 시 한 줄에 두 줄의 칼럼이 나옴
Get-Process | Format-Wide -column 4 실행 시 4개의 칼럼 확인
Get-Process | Format-List :리스트 형식으로 확인
Get-Process | Format-Table: 테이블 형식으로 확인
Get-Process -name powershell | format-table
프로세스 중 파워쉘이라는 이름을 가진 프로세스를 출력하고, 포맷 테이블 형식으로 확인하는 옵션
'PowerShell' 카테고리의 다른 글
PowerShell - Get-Command 명령 (0) | 2024.04.06 |
---|---|
PowerShell - Get-Help 명령어 (0) | 2024.04.06 |
PowerShell - 명령어 구조 (0) | 2024.04.06 |
PowerShell - 실행 및 환경설정 (0) | 2024.04.02 |