mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
22eb76c6d0
shfmt -f script/ | xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
10 lines
131 B
Bash
Executable File
10 lines
131 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "$0: <installdir>"
|
|
exit 1
|
|
fi
|
|
|
|
installdir=$1
|
|
exit $(find ${installdir} -name \*.py | wc -l)
|