在 Linux 系統呈現 dd 的進度
#!/bin/bash
while
killall -USR1 dd;
do sleep 5;
done#!/bin/bash
# 這邊要依據自己系統上的 dd process ID
pid=$1
while
kill -USR1 $pid;
do sleep 5;
doneLast updated
#!/bin/bash
while
killall -USR1 dd;
do sleep 5;
done#!/bin/bash
# 這邊要依據自己系統上的 dd process ID
pid=$1
while
kill -USR1 $pid;
do sleep 5;
doneLast updated