2021-06-23 04:17:03 +02:00
|
|
|
#!/bin/sh -l
|
2021-06-27 22:32:16 +02:00
|
|
|
# $1 arguments. BEWARE: Some filenames may need to be escaped.
|
2021-06-24 20:56:59 +02:00
|
|
|
# $2 output filename
|
2021-06-23 04:17:03 +02:00
|
|
|
|
2021-06-27 22:32:16 +02:00
|
|
|
flawfinder $1 > "$2"
|
2021-06-23 04:17:03 +02:00
|
|
|
|
|
|
|
echo "Executed with success."
|