pentest-distro-builder/filesystem/etc/skel/.tmux/plugins/tmux-net-speed/init.sh

14 lines
244 B
Bash
Raw Normal View History

2018-09-27 17:40:01 -06:00
#!/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