mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2025-02-04 23:17:57 -07:00
29 lines
582 B
Bash
29 lines
582 B
Bash
|
#!/bin/bash -
|
||
|
|
||
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
source "$CURRENT_DIR/helpers.sh"
|
||
|
|
||
|
sum_download_speed()
|
||
|
{
|
||
|
# Output uses first column
|
||
|
sum_speed 1
|
||
|
}
|
||
|
|
||
|
main()
|
||
|
{
|
||
|
# TODO make configurable
|
||
|
#local file=$(get_tmux_option $DOWNLOAD_FILE)
|
||
|
local file=$DOWNLOAD_FILE
|
||
|
local old_val=$(read_file $file)
|
||
|
local new_val=$(sum_download_speed)
|
||
|
|
||
|
write_file $file $new_val
|
||
|
local vel=$(get_velocity $new_val $old_val)
|
||
|
|
||
|
## Format output
|
||
|
local format=$(get_tmux_option @download_speed_format "%s")
|
||
|
printf "$format" "$vel"
|
||
|
}
|
||
|
main
|
||
|
|