LINUX.ORG.RU

История изменений

Исправление Dron, (текущая версия) :

:)

.....

char ch;
system("ps -a | grep program_name > /tmp/123456789987456321");
FILE *my_file=fopen("/tmp/123456789987456321","r");

while((ch=getc(my_file))!='\0')
{
   printf("%c",ch);
   
   .....
};

fclose(my_file);

Исходная версия Dron, :

:)

.....

char ch;
system("ps -a | grep program_name > /tmp/123456789987456321");
FILE *my_file=fopen("/tmp/123456789987456321","r");

while((ch=getc(my_file))!='\0')
{
   printf("%c",ch);
   
   .....
};