답변1
내 생각에는 이것이 당신이 원하는 것입니다 .bashrc
..bash_profile
alias cmdname="ssh -t [email protected] ssh application.server.com"
에서 man ssh
:
-t Force pseudo-tty allocation. This can be used to execute arbi-
trary screen-based programs on a remote machine, which can be
very useful, e.g., when implementing menu services. Multiple -t
options force tty allocation, even if ssh has no local tty.
새 별칭을 얻으려면 파일을 가져옵니다.
source .bashrc [OR] source .bash_profile
이제 터미널에서 테스트해 보세요.
[user]# cmdname
아직 설정하지 않았다면 비밀번호를 입력할 필요가 없도록 SSH 키도 설정하겠습니다. 명령어만 입력하면 자동으로 로그인됩니다.