5 lines
179 B
Bash
5 lines
179 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
ROOT=$(readlink -fn $(dirname $0)/.. )
|
||
|
find $ROOT -not -wholename \*.tox/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* \) -print0 | xargs -0 bashate -v
|