0

这是一个简单的 bash 代码,用于在终端中显示仪表:

#!/bin/bash
{
for ((i = 0 ; i <= 100 ; i+=5)); do
    sleep 0.1
    echo $i
done
} | whiptail --gauge "Please wait while we are sleeping..." 6 50 0
# you can replace 'whiptail' with 'dialog', it will work.

我想在 C 中重现同样的东西。因此我这样做:

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>

// set DIALOG to "dialog" or "whiptail"
#define DIALOG "whiptail"

int main()
{
    FILE* pipe;
    if( (pipe = popen(DIALOG " --gauge 'Loading...' 6 50 0","w") )!=NULL)
    {
        int i;
        for (i=1; i<=100; i++)
        {
            usleep(0.1);
            fprintf(pipe, "%d\n",i);
            fflush(pipe);
        }
        pclose(pipe);
    }
    return 0;
}

但它只能与“对话”一起使用,我无法让它与“whiptail”一起使用:(

有什么帮助吗??

解决方案 正如Brad S.解释的那样,如果太快了……改成 usleep(100000) 就行了

4

1 回答 1

0

如果我睡一段更合理的时间,它对我有用....尝试:usleep(100000);

于 2014-12-06T19:41:38.287 回答