728x90
일반적으로는,
set-alias ll ls
위와 같이, shell에 입력하면, alias가 적용되지만, shell을 종료하면 날라간다.
지속성을 유지하기 위해서는.
$profile
C:\Users\user\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
$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을 만들어서 추가하여야 적용된다.
728x90
댓글