Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I need to check if in my file there are duplicates entries, in C.

Sample file:

/proc/proc1 1000
/proc/proc2 2000
/proc/proc1 3000

I need to solve like this:

/proc/proc1 1000 3000
/proc/proc2 2000

The path (/proc/proc*) can include spaces likes: /proc/proc hello/foo

Here I wrote something to handle /proc/ and their pids, but now I'm stuck on this problem..

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
374 views
Welcome To Ask or Share your Answers For Others

1 Answer

#include <stdio.h>
#include <string.h>

int main(void){
    char str[]= "/proc/proc hello/foo 4000";
    char path[256];
    char pid[10];
    char *p;

    p=strrchr(str, ' ');
    strcpy(pid, p+1);
    *p='';
    strcpy(path, str);
    printf("%s
", path);// /proc/proc hello/foo
    printf("%s
", pid);// 4000

    return 0;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...