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..