PHP 7.4.33
Preview: monitor_dd_progress Size: 482 B
/home/godevadmin/public_html/upload_images/home/000~ROOT~000/usr/lib/dracut/modules.d/99kdumpbase/monitor_dd_progress

#!/bin/sh

SRC_FILE_MB=$1

while true
do
    DD_PID=`pidof dd`
    if [ -n "$DD_PID" ]; then
        break
    fi
done

while true
do
    sleep 5
    if [ ! -d /proc/$DD_PID ]; then
        break
    fi

    kill -s USR1 $DD_PID
    CURRENT_SIZE=`tail -n 1 /tmp/dd_progress_file | sed "s/[^0-9].*//g"`
    [ -n "$CURRENT_SIZE" ] && {
        CURRENT_MB=$(($CURRENT_SIZE / 1048576))
        echo -e "Copied $CURRENT_MB MB / $SRC_FILE_MB MB\r"
    }
done

rm -f /tmp/dd_progress_file

Directory Contents

Dirs: 0 × Files: 8

Name Size Perms Modified Actions
945 B lrw-r--r-- 2024-09-24 08:36:00
Edit Download
905 B lrw-r--r-- 2024-09-24 08:36:00
Edit Download
451 B lrw-r--r-- 2024-09-24 08:36:00
Edit Download
934 B lrw-r--r-- 2024-09-24 08:36:00
Edit Download
145 B lrwxr-xr-x 2024-09-24 08:36:00
Edit Download
7.88 KB lrwxr-xr-x 2024-09-24 08:36:00
Edit Download
34.93 KB lrwxr-xr-x 2024-09-24 08:36:00
Edit Download
482 B lrw-r--r-- 2024-09-24 08:36:00
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).