标签: bash ssh
在bash脚本中,我想知道当前登录使用了哪个密钥。任何想法如何去做?
答案 0 :(得分:1)
我的解决方案是使用command =“< some script>”在authorized_keys中添加密钥。然后让该脚本设置一个环境变量以使用该键(或将其作为命令的参数)。哦,别忘了让脚本启动shell。
#!/bin/sh export SomeVariable=$1 bash