
#20190801 buster
F1="$(find usr/bin -type f -name 'python3.[23456789]' | head -n 1)"
if [ "$F1" ];then
 F2="$(dirname $F1)"
 F3="$(basename $F1)"
 [ ! -e ${F2}/python3 ] && ln -s ${F3} ${F2}/python3
fi
