blog/content/post/2013/10/25/2013-10-25-00001585.md

2.4 KiB
Raw Blame History

title author date geo_latitude geo_longitude geo_public wordtwit_posted_tweets wordtwit_post_info categories
SSHでログインした際に任意のコマンドを実行する kazu634 2013-10-25
38.305993
141.022698
1
a:1:{i:0;i:1808;}
O:8:"stdClass":13:{s:6:"manual";b:0;s:11:"tweet_times";i:1;s:5:"delay";i:0;s:7:"enabled";i:1;s:10:"separation";s:2:"60";s:7:"version";s:3:"3.7";s:14:"tweet_template";b:0;s:6:"status";i:2;s:6:"result";a:0:{}s:13:"tweet_counter";i:2;s:13:"tweet_log_ids";a:1:{i:0;i:1808;}s:9:"hash_tags";a:0:{}s:8:"accounts";a:1:{i:0;s:7:"kazu634";}}
ssh

Project 365 Day 87: Shaping Code

SSH経由でログインした場合に任意のコマンドを実行する方法を調査しました。どうやら ${HOME}/.ssh/rc というファイルを作成し、そこに実行したいコマンドを記入すればいいようでした。

If the file ~/.ssh/rc exists, sh(1) runs it after reading the environment files
but before starting the user's shell or command.
It must not produce any output on stdout; stderr must be used instead.

参考