นี่คือรูปแบบที่ซับซ้อนของฉันในคำตอบของ @ ArekBurdach มันมีนามสกุลต่อไปนี้:
- โฮสต์สามารถเป็นที่ใดก็ได้ใน
ssh
บรรทัดคำสั่ง; เช่นมันยังสนับสนุนssh <args> <host> <commands>
ไวยากรณ์
- ไม่ฮาร์ดโค้ดพา ธ ไปที่
ssh
- การแยกวิเคราะห์ที่มีประสิทธิภาพมากขึ้น
ssh_config
- โบนัส: เสื้อคลุมสำหรับ
scp
เกินไป
ssh-wrapper
#!/bin/bash
password=$(awk '
BEGIN {
# Collect the SSH arguments as keys of a dictionary, so that we can easily
# check for inclusion.
for (i = 2; i < ARGC; i++) {
sshArgs[ARGV[i]] = 1
}
# Only process the first argument; all others are the command-line arguments
# given to ssh.
ARGC = 2
}
$1 == "Password" && inhost { print $2 }
/^\s*Host\s/ {
if ($2 in sshArgs)
inhost=1
else
inhost=0
}
' ~/.ssh/config "$@")
if [ "$password" ]; then
sshpass -p "$password" "$(which ssh)" "$@"
else
"$(which ssh)" "$@"
fi
scp-wrapper
#!/bin/bash
password=$(awk '
BEGIN {
# Collect the SCP arguments as keys of a dictionary, so that we can easily
# check for inclusion.
for (i = 2; i < ARGC; i++) {
colonIdx = index(ARGV[i], ":")
if (colonIdx > 0) {
scpArgs[substr(ARGV[i], 1, colonIdx - 1)] = 1
}
}
# Only process the first argument; all others are the command-line arguments
# given to scp.
ARGC = 2
}
$1 == "Password" && inhost { print $2 }
/^\s*Host\s/ {
if ($2 in scpArgs)
inhost=1
else
inhost=0
}
' ~/.ssh/config "$@")
if [ "$password" ]; then
sshpass -p "$password" "$(which scp)" "$@"
else
"$(which scp)" "$@"
fi
การติดตั้ง
กำหนดนามแฝงใน~/.bashrc
:
alias ssh=ssh-wrapper
alias scp=scp-wrapper
องค์ประกอบ
ด้วยIgnoreUnknown
คำสั่งssh
อย่าบ่นเกี่ยวกับPassword
คำสั่งที่เพิ่งเปิดตัวดังนั้น (ตรงกันข้ามกับคำตอบของ @ ArekBurdach) เราสามารถทำให้สิ่งนี้ปรากฏเป็นรูปแบบ "ของจริง" หากคุณไม่ชอบสิ่งนี้ก็เป็นการง่ายที่จะเปลี่ยนสคริปต์กลับเป็นสคริปต์ที่แสดงความคิดเห็น
# Allow specifying passwords for Host entries, to be parsed by ssh-wrapper.
IgnoreUnknown Password
Host foohost
User baruser
Password foobarpassword