일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
- 안드로이드
- DART
- 안드로이드스튜디오
- Algorithm
- DFS
- 코테
- android
- cos pro
- C++
- Vue
- BAEKJOON
- 개발
- DFS와BFS
- issue
- 알고리즘
- 동적계획법
- Python
- 분할정복
- 백준
- vuejs
- codingtest
- django
- 동적계획법과최단거리역추적
- AndroidStudio
- 파이썬
- cos pro 1급
- 코딩테스트
- cos
- 코드품앗이
- Flutter
- Today
- Total
Development Artist
[Summary, Command] PowerShell 명령어 정리 본문
명령어
구조
동사-명사 -파라미터 값
예시
Get-NetAdapter : 연결된 네트워크 어댑터의 정보 얻기.
$PSVersionTable : Powershell 버전 확인.
Get-ExecutionPolicy : 스크립트 실행 정책 확인.
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned : 스크립트 실행 정책 '허용' 설정.
Set-ExecutionPolicy -ExecutionPolicy Restricted : 스크립트 실행 정책 '제한' 설정.
Get-Service : 서비스 목록 조회. ( Status, Name, DisplayName )
Get-Service -Name Sense : 이름 Sense인 서비스 조회.
Get-Service -Name *aa*, *bb* : 중간에 aa 또는 bb 문자를 포함하는 서비스 조회.
Get-Alias : 명령어에 대한 약어 조회. 참고로 Get-Service = gsv
Get-Verb : 모든 Verb 조회. Verb, AliasPrefix, Group, Description
Get-Verb -Group Common : Group이 Common인 Verb 조회.
Get-Verb -Verb Set : Set Verb 조회.
Get-Help : 도움말(사용법).
Get-Help Get-Service : Get-Service 도움말 조회.
Get-Help Get- <tab> <tab> <tab> : Get- 뒤의 명령어 자동완성 기능.
Get-Help Get-Service -full : Get-Service 명령어의 모든 정보 조회. +파라미터, 입력, 출력
help Get-Service : Get-Service 도움말 조회.
Get-Command : 모든 명령어 조회. CommandType, Name, Version, Source
Get-Command -CommandType Function : 명령어타입이 함수인 명령어 조회.
Get-Command -CommandType Function -Name Get-* : 명령어타입이 함수이고 이름이 Get-으로 시작하는 명령어 조회.
Get-Command -CommandType Function -Name Get-* -Module netada* : 명령어타입이 함수이고 이름이 Get-으로 시작하고 Module(Source)이 netada로 시작하는 명령어 조회.
파이프라인
구조
command1 | command2
예시
Get-Service | Where-Object {$_.DisplayName -match "ab"} : DisplayName에 ab가 있는 서비스들 조회.
Get-Command | Out-File command.txt : 모든 명령어 조회한 결과를 command.txt에 출력.
'Research > Devops' 카테고리의 다른 글
[Linux, Centos, Ubuntu] 주요 디렉터리 및 파일 정리 (0) | 2022.04.14 |
---|---|
[Linux, Ubuntu, Centos] 명령어 모음집 (0) | 2022.04.12 |
[Words, Devops] Devops 및 Devlopment 관련 용어 모음집 (0) | 2022.04.04 |
[Summary] Ubuntu vs Centos (0) | 2022.03.31 |
[ Summary] Cloud Native Landscape Project Trail Map ( CNCF ) (0) | 2022.03.08 |