iTerm2에서 ssh 명령시 새 창에서 열기
설정 방법
AppleScript를 사용하여 새 창을 여는 스크립트 만들기
ssh_with_new_window.scpt
on run argv
-- use space
set text item delimiters of AppleScript to space
set cmd to argv as string
-- set profile
set profile to "ssh" as text
tell application "iTerm"
activate
tell (make new terminal)
launch session profile
tell the last session
write text "/usr/bin/ssh " & cmd
end tell
end tell
end tell
end run
alias ssh = 'osascript ssh_with_new_window.scpt'
사용방법
ssh host_name
프로필 지정
호스트 이름에 특정 키워드가 포함된 경우 등에 배경색, 문자색을 바꾸어 기분을 전환하고 싶은 경우에 추천
적절한 예
…
-- set profile
if cmd contains "production" then
set profile to "production" as text
else if cmd contains "pro" then
set profile to "production" as text
else
set profile to "ssh" as text
end if
…
Reference
이 문제에 관하여(iTerm2에서 ssh 명령시 새 창에서 열기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/watawuwu/items/b33a06de69576158cd3f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)