An open API service indexing awesome lists of open source software.

https://github.com/ammarfaizi2/uniqqs

A uniq for URL integrated with query string result.
https://github.com/ammarfaizi2/uniqqs

http list uniq unix util

Last synced: 7 months ago
JSON representation

A uniq for URL integrated with query string result.

Awesome Lists containing this project

README

          

# uniqqs

A uniq for URL integrated with query string result.

# Installation
```
git clone https://github.com/ammarfaizi2/uniqqs
cd uniqqs
gcc -O3 uniqqs.c -o uniqqs
./uniqqs < test.txt
```

# Example Case
### List
```
https://www.facebook.com/endpoint_a?p1=123&p2=123123
https://www.facebook.com/endpoint_a?p4=123&p3=123123
https://www.facebook.com/endpoint_b?p4=123&p3=123123
https://www.facebook.com/endpoint_b?p5=123&p6=123123
https://www.facebook.com/endpoint_a?p5=123&p6=123123
https://www.facebook.com/endpoint_b?p1=123&p2=123123
```
### Result
```
https://www.facebook.com/endpoint_a?p1=xxx&p2=xxx&p4=xxx&p3=xxx&p5=xxx&p6=xxx
https://www.facebook.com/endpoint_b?p4=xxx&p3=xxx&p5=xxx&p6=xxx&p1=xxx&p2=xxx
```

# License
MIT