dockapps/wmppp.app/getmodemspeed.c

18 lines
243 B
C
Raw Normal View History

#include <stdio.h>
int main(void) {
FILE *fd;
char temp[256];
2014-09-14 17:57:14 +00:00
fd = popen("tac /etc/ppp/connect-errors | grep '['CONNECT'|'CARRIER']' | head -1", "r");
while (fgets(temp, 256, fd)) {
printf("%s", temp);
}
pclose(fd);
return 0;
}