본문 바로가기
컴퓨터 활용(한글, 오피스 등)/50_1. 운영체제_윈도우

windows power shell alias 설정하기

by 3604 2024. 3. 8.
728x90

윈도우 powershell에서
> set-alias ll ls
위와같이 입력한 후 powershell 종료하면 내용이 사라짐.

>$profile
프로파일 경로가 표시된다.

>test-path $profile
프로필 파일 생성 여부를 확인하는 명령어인데, 있으면 true, 없으면 false

>new-item -path $profile -itemtype file -force
프로파일 생성 명령어임

vim이 설치되어 있다면
>vim $profile

vim이 설치되어 있지 않다면
>notepad $profile

로 진입하여, 

set-alias [단축어] [명령어]
set-alias ll ls
를 작성하면 지속성이 유지된다.

하지만, 띄어쓰기를 명령어에서 사용하는 경우에는

function fn_gotest {ssh -i ~/.ssh/test.pem root@***.***.***.*** -p 22} 

set-alias vi vim

set-alias gotest fn_gotest

function을 만들어서 추가하여 적용한다.

출처: https://javamin.tistory.com/entry/window-power-shell-alias-%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0

 

 

 

 

728x90
반응형