-
Notifications
You must be signed in to change notification settings - Fork 953
Description
httpx can avoid overwriting response file content for the same input when -skip-dedupe
is used, as the user has explicitly disabled deduplication and wants to see each copy of the response.
Input:
$ cat test.txt
example.com
example.com
httpx run
$ httpx -l test.txt -stream -skip-dedupe -sr -silent
https://example.com
https://example.com
Current behavior:
$ tree output/response
output/response
├── example.com
│ └── cea8d4cbc5e3b39fcbcf053e0e0244fe14c835ae.txt
└── index.txt
1 directory, 2 files
Expected behavior:
$ tree output/response
output/response
├── example.com
│ └── cea8d4cbc5e3b39fcbcf053e0e0244fe14c835ae.txt
+├── example.com
+│ └── cea8d4cbc5e3b39fcbcf053e0e0244fe14c835ae.txt
└── index.txt
1 directory, 3 files
Metadata
Metadata
Assignees
Labels
No labels