شما نمی توانید بیش از 25 موضوع انتخاب کنید موضوع می‌بایستی با حروف یا شماره ها شروع شود. و می‌تواند شامل دَش ('-') باشد و طول آن تا 35 کارکتر نیز امکانپذیر است.
 
 
 
 
 
 

25 خطوط
616 B

#!/bin/sh
##
## ssh-askpass -- Internal OpenSSH wrapper for ssh-askpass
##
ssh_askpass=""
if [ ".$SSH_ASKPASS" != . ]; then
ssh_askpass="$SSH_ASKPASS"
else
for p in @l_prefix@ `echo $PATH | sed -e 's/:/ /g'`; do
if [ -f $p/ssh-askpass ]; then
ssh_askpass="$p/ssh-askpass"
break
elif [ -f $p/x11-ssh-askpass ]; then
ssh_askpass="$p/x11-ssh-askpass"
break
fi
done
fi
if [ ".$ssh_askpass" = . ]; then
echo "ssh:ERROR: neither \"[x11-]ssh-askpass\" installed nor \$SSH_ASKPASS provided" 1>&2
exit 1
fi
exec $ssh_askpass "$@"