You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
760 B
35 lines
760 B
if [ ! -d ~/.ssh ]; then
|
|
gen_rsa_key
|
|
fi
|
|
|
|
refresh() {
|
|
cmdlist=()
|
|
IFSOLD=$IFS
|
|
IFS=',';
|
|
while read -r label mycommand desc;
|
|
do
|
|
[[ $label =~ ^#.* ]] && continue
|
|
|
|
desc=${desc/!GUEST/$GUEST}
|
|
desc=${desc/!REMOTE/$REMOTE}
|
|
desc=${desc/!LOCAL/$LOCAL}
|
|
desc=${desc/!DEST/$DEST}
|
|
desc=${desc/!home/$home}
|
|
desc=${desc/!target/$target}
|
|
|
|
cmdlist+=("$label" "$desc")
|
|
done <<< $hard_coded_cmds
|
|
IFS=$IFSOLD
|
|
}
|
|
|
|
cmd() {
|
|
IFSOLD=$IFS
|
|
IFS=','
|
|
while read -r label user_command desc;
|
|
do
|
|
[[ $label =~ ^#.* ]] && continue
|
|
[[ "$command" == "$label" ]] && break
|
|
done <<< $hard_coded_cmds
|
|
IFS=$IFSOLD
|
|
[[ "$command" == "$label" ]] && { $user_command; return; }
|
|
}
|
|
|