Commit c9e34f13 authored by Vitaly Lipatov's avatar Vitaly Lipatov

eget: add --verbose support

parent 70d058a4
...@@ -47,7 +47,7 @@ eget() ...@@ -47,7 +47,7 @@ eget()
if [ -n "$PROGNAME" ] ; then if [ -n "$PROGNAME" ] ; then
local bashopt='' local bashopt=''
[ -n "$verbose" ] && bashopt='-x' #[ -n "$verbose" ] && bashopt='-x'
(unset EGET_IPFS_GATEWAY; unset EGET_IPFS_API ; unset EGET_IPFS_DB ; $CMDSHELL $bashopt $PROGDIR/$PROGNAME "$@" ) (unset EGET_IPFS_GATEWAY; unset EGET_IPFS_API ; unset EGET_IPFS_DB ; $CMDSHELL $bashopt $PROGDIR/$PROGNAME "$@" )
else else
...@@ -271,6 +271,7 @@ download_with_mirroring() ...@@ -271,6 +271,7 @@ download_with_mirroring()
check_tty check_tty
verbose=''
WGETNOSSLCHECK='' WGETNOSSLCHECK=''
CURLNOSSLCHECK='' CURLNOSSLCHECK=''
WGETUSERAGENT='' WGETUSERAGENT=''
...@@ -312,6 +313,7 @@ Usage: eget [options] http://somesite.ru/dir/na*.log ...@@ -312,6 +313,7 @@ Usage: eget [options] http://somesite.ru/dir/na*.log
Options: Options:
-q|--quiet - quiet mode -q|--quiet - quiet mode
--verbose - verbose mode
-k|--no-check-certificate - skip SSL certificate chain support -k|--no-check-certificate - skip SSL certificate chain support
-U|-A|--user-agent - send browser like UserAgent -U|-A|--user-agent - send browser like UserAgent
-4|--ipv4|--inet4-only - use only IPV4 -4|--ipv4|--inet4-only - use only IPV4
...@@ -365,6 +367,9 @@ while [ -n "$1" ] ; do ...@@ -365,6 +367,9 @@ while [ -n "$1" ] ; do
-q|--quiet) -q|--quiet)
set_quiet set_quiet
;; ;;
--verbose)
verbose="$1"
;;
-k|--no-check-certificate) -k|--no-check-certificate)
WGETNOSSLCHECK='--no-check-certificate' WGETNOSSLCHECK='--no-check-certificate'
CURLNOSSLCHECK='-k' CURLNOSSLCHECK='-k'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment