This commit is contained in:
Michael Wolf
2023-09-30 15:32:00 -06:00
parent 032f32f132
commit 3034cd23e8

View File

@@ -1,3 +1,7 @@
#!/bin/bash #!/bin/bash
shellcheck "$(find . -type f | grep -v '\.git' | grep '\.sh')" files=$(find . -type f | grep -v '\.git' | grep '\.sh')
for i in $files; do
shellcheck "$i"
done