mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 08:59:11 -06:00
14 lines
244 B
Bash
14 lines
244 B
Bash
|
#!/bin/bash -
|
||
|
|
||
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
source "$CURRENT_DIR/scripts/helpers.sh"
|
||
|
|
||
|
# Initialize files
|
||
|
main()
|
||
|
{
|
||
|
# TODO Add error checking
|
||
|
echo "0" > $DOWNLOAD_FILE
|
||
|
echo "0" > $UPLOAD_FILE
|
||
|
}
|
||
|
main
|