mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
10 lines
131 B
Bash
10 lines
131 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ $# -lt 1 ]; then
|
||
|
echo "$0: <installdir>"
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
installdir=$1
|
||
|
exit `find ${installdir} -name \*.py | wc -l`
|