Bash 스크립트 - Wget 그래픽 다운로드 진행

Bash 스크립트 - Wget 그래픽 다운로드 진행

이 코드를 .code wget + zenity에서 포팅하려고 합니다 .wget + kdialog
zenity

#!/bin/bash

# Start wget | zenity
# Note the & at the end of the pipe, this allows the script to continue with wget running in the background

wget http://www.zezeniaonline.com/download/downloadlinux 2>&1 | sed -u 's/.* \([0-9]\+%\)\ \+\([0-9.]\+.\) \(.*\)/\1\n# Downloading at \2\/s, ETA \3/' | zenity --progress --title="Downloading File..." 

#Start a loop testing if zenity is running, and if not kill wget
RUNNING=0
while [ $RUNNING -eq 0 ]
do
if [ -z "$(pidof zenity)" ]
then
  pkill wget
  RUNNING=1
fi
done

Zenity 코드가 완벽하게 작동합니다

Zenity + Wget 다운로드 진행

동일한 작업을 수행해야 했지만 kdialog.

#!/bin/bash

# Start wget | kdialog

wget http://www.zezeniaonline.com/download/downloadlinux 2>&1 | sed -u 's/.* \([0-9]\+%\)\ \+\([0-9.]\+.\) \(.*\)/\1\n# Downloading at \2\/s, ETA \3/' | kdialog --progressbar " " --title="Downloading File..." 

#Start a loop testing if zenity is running, and if not kill wget
RUNNING=0
while [ $RUNNING -eq 0 ]
do
if [ -z "$(pidof kdialog)" ]
then
  pkill wget
  RUNNING=1
fi
done

전혀 작동하지 않습니다

#!/bin/bash 
# Start wget | kdialog

wget --progress=dot http://www.zezeniaonline.com/download/downloadlinux 2>&1 | fgrep --line-buffered '%' \ | sed -u -r 's:.* ([0-9]+)% .*:\1:' | kdialog --title "Installation" --progressbar " " &

#Start a loop testing if kdialog is running, and if not kill wget
RUNNING=0
while [ $RUNNING -eq 0 ]
do
if [ -z "$(pidof kdialog)" ]
then
  pkill wget
  RUNNING=1
fi
done

그런데 아래와 같은 오류가 발생합니다. 예, 다운로드 중이지만 "kdialog"의 "진행"이 "진행"이 아닙니다.

KDialog가 진행되지 않습니다

답변1

다음은 이 페이지에 링크된 사이트의 일부 이전 튜토리얼에서 수정된 내 솔루션입니다.

이 코드는 github의 기본 저장소를 다운로드하려고 시도합니다.

    link="https://github.com/nowardev/kde-peace-settings/archive/master.zip" #my own github stuff 
    a=$(kdialog --progressbar "W-Get will  download: Nowardev GitHub Master stuff " 100);sleep 2
    qdbus $a  showCancelButton true

    while read line ;do
    read -r p t <<< "$line"
    echo $p 
    echo $t 
    qdbus $a Set org.kde.kdialog.ProgressDialog value $p

        while [[  $(qdbus  $a wasCancelled) != "false" ]] ; do
            echo "KILLING THE PROCESS AND KDIALOG"
            qdbus $a  org.kde.kdialog.ProgressDialog.close 

            exit
        done


qdbus $a org.kde.kdialog.ProgressDialog.setLabelText "W-Get will  download: Nowardev GitHub Master stuff  time left : $t" 


done< <(wget "$link" 2>&1 |mawk -W interactive '{ gsub(/\%/," "); print int($7)" "$9 }')

답변2

해당 소스 코드를 수정하려고 하는데 제대로 작동합니다. 정말 필요한 부분만 수정하면 됩니다.

#!/bin/bash

kde_download() {
arch=$(uname -m)

case "$arch" in
    x86)    arch="x86"  ;;
    i?86)   arch="x86"  ;;
    amd64)  arch="amd64"    ;;
    x86_64) arch="amd64"    ;;
    * ) echo "Your Arch '$arch' -> Its not supported."  ;;
esac

ThisDIR="$PWD"
TempDir="/tmp"
TITLE="Team Speak 3 Linux Client"
TS3DIR="/opt/TeamSpeak3/Client"
version=$(curl -s http://dl.4players.de/ts/releases/ |   grep -Po '(?<=href=")[0-9]+(\.[0-9]+){2,3}(?=/")' |   sort -Vr | head -1)
URLICON="https://dl.dropboxusercontent.com/u/3164499/Linux/Iconos/TeamSpeak3.png"
TS3FILE="TeamSpeak3-Client-linux_$arch-$version.run"
TS3CURL="http://dl.4players.de/ts/releases/$version"
TS3CF="http://dl.4players.de/ts/releases/$version/TeamSpeak3-Client-linux_$arch-$version.run"
TARGET="/opt/Utilidades/Prueba"
J=0

# download with output to dialog progress bar
KDIALOG="`kdialog --title "$TITLE" --progressbar "Downloading:<br>$TS3FILE<br>into<br>$TARGET"`"
if grep "^org.kde.kdialog" <<< "$KDIALOG" > /dev/null; then


# KDE4 kdialog and dbus control
autoclose="qdbus $KDIALOG org.freedesktop.DBus.Properties.Set org.kde.kdialog.ProgressDialog autoClose true"
showcancel="qdbus $KDIALOG org.kde.kdialog.ProgressDialog.showCancelButton false"
setprogress="qdbus $KDIALOG org.freedesktop.DBus.Properties.Set org.kde.kdialog.ProgressDialog value"
manualclose="qdbus $KDIALOG org.kde.kdialog.ProgressDialog.close"
wascancelled="qdbus $KDIALOG org.kde.kdialog.ProgressDialog.wasCancelled"


else
# KDE3 kdialog and dcop control
# cut beginning
KDIALOG="${KDIALOG//DCOPRef\(/}"
# cut end
KDIALOG="${KDIALOG//,ProgressDialog\)/}"
autoclose="dcop $KDIALOG ProgressDialog setAutoClose true"
setprogress="dcop $KDIALOG ProgressDialog setProgress"
showcancel="dcop $KDIALOG ProgressDialog showCancelButton false"
manualclose="dcop $KDIALOG ProgressDialog close"
wascancelled="dcop $KDIALOG ProgressDialog wasCancelled"
fi
    $autoclose
    $showcancel
    cd "$TempDir"
    ( wget "$TS3CF" -o /dev/stdout | while read I ; do
    I="${I//*.......... .......... .......... .......... .......... /}"
    I="${I%%%*}"

    # report changes only
    if [ "$I" ] && [ "$J" != "$I" ]; then
    $setprogress $I
    J="$I"
    fi
    done ; $manualclose ; cd "$ThisDIR" ) &

pid="$!"

while [ -d "/proc/$pid/" ]; do
    if [ "`$wascancelled`" = true ]; then
    kill $pid
    kill `ps aux | grep "wget $TS3FILE -o /dev/stdout" | grep -v grep | tr -s ' ' ' ' | cut -f2 -d\ `
    $manualclose
        if [ "$?" != 0 ]; then
        echo "Installation interrupted."
        exit 255
        fi
    fi
sleep 1
done
wait
}

kde_download

관련 정보