1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00
samba-mirror/script/find_python.sh

10 lines
131 B
Bash
Raw Normal View History

#!/bin/sh
if [ $# -lt 1 ]; then
echo "$0: <installdir>"
exit 1
fi
installdir=$1
exit $(find ${installdir} -name \*.py | wc -l)