mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-07-18 09:49:26 -04:00
11 lines
No EOL
260 B
Bash
Executable file
11 lines
No EOL
260 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# https://stackoverflow.com/questions/3822621/how-to-exit-if-a-command-failed
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
# wrapper for all the checking scripts
|
|
echo $1
|
|
./.bin/check-file-for-starting-slash "$1"
|
|
./.bin/new-line-and-empty-line-checker.py "$1" |