4 lines
92 B
Bash
Executable File
4 lines
92 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
find . -type f -name '*.sh' -print0 | xargs -n 1 -0 shellcheck --color
|