1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/script/find_python.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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)