mirror of
https://github.com/danielmiessler/SecLists
synced 2025-12-15 05:15:24 +01:00
created wrapper script
This commit is contained in:
parent
066ede4356
commit
6f4b5e061d
1 changed files with 11 additions and 0 deletions
11
.bin/validators.sh
Executable file
11
.bin/validators.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/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"
|
||||
Loading…
Reference in a new issue