6 lines
208 B
Bash
Executable file
6 lines
208 B
Bash
Executable file
#!/bin/zsh
|
|
#dep:wget
|
|
source ${$(realpath "$0"):h:h}/lib/next-in-path.zsh
|
|
next=$(next-in-path wget $0)
|
|
if (( $? != 0 )); then exit 1; fi
|
|
$next --hsts-file="${XDG_DATA_HOME:-$HOME/.local/share}/wget-hsts" "$@"
|