1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

カレントディレクトリのままsshログインしたい時のための.bashrc設定

Last updated at Posted at 2019-03-28

#前提

  • NFSで同様にファイルサーバがマウントされている計算機間でのsshログイン
  • sshログイン後も元いたディレクトリのままになるようなコマンドを.bashrcで設定したい(通常はsshすると下のようにhomeディレクトリに移動する いちいち元の場所にcdするのは面倒)
[misawa@host1 test]$ ssh host2
[misawa@host2 ~]$ 

#失敗例

function sshcd(){
    current=`pwd`
    ssh $1 "cd $current"
}

これだとcdを実行したあと閉じるので元に戻ってしまう(ターミナルの見た目上は変化がない)

[misawa@host1 test]$ sshcd host2
[misawa@host1 test]$ 

#成功例

function sshcd(){
    current=`pwd`
    ssh -t $1 "cd $current && /bin/bash"
}

こうすることでうまくいきました。

[misawa@host1 test]$ sshcd host2
[misawa@host2 test]$ 

作業時間がほんのちょっと短縮できます。

※とても参考にさせて頂きました
https://qiita.com/kanemu/items/679c4e14aee15441e33f

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?