python: Use secrets.token_bytes instead of random
[Samba.git] / script / find_python.sh
blob5ef8368b5ebbfa308e4b15b9e987f4ff73e2deaf
1 #!/bin/sh
3 if [ $# -lt 1 ]; then
4 echo "$0: <installdir>"
5 exit 1
6 fi
8 installdir=$1
9 exit $(find ${installdir} -name \*.py | wc -l)