📜  是 不是 也许 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:35.260000             🧑  作者: Mango

代码示例2
dialog --gauge "Filling the tank" 20 60 0 < <(
    for i in {1..100};do
        printf "XXX\n%d\n%(%a %b %T)T progress: %d\nXXX\n" $i -1 $i
        sleep .033
    done
)