-
Notifications
You must be signed in to change notification settings - Fork 990
Labels
Status: AbandonedThis issue is no longer important to the requestor and no one else has shown an interest in it.This issue is no longer important to the requestor and no one else has shown an interest in it.Status: Stale
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.comCurrent behavior:
$ tree output/response
output/response
├── example.com
│ └── cea8d4cbc5e3b39fcbcf053e0e0244fe14c835ae.txt
└── index.txt
1 directory, 2 filesExpected behavior:
$ tree output/response
output/response
├── example.com
│ └── cea8d4cbc5e3b39fcbcf053e0e0244fe14c835ae.txt
+├── example.com
+│ └── cea8d4cbc5e3b39fcbcf053e0e0244fe14c835ae.txt
└── index.txt
1 directory, 3 filesMetadata
Metadata
Assignees
Labels
Status: AbandonedThis issue is no longer important to the requestor and no one else has shown an interest in it.This issue is no longer important to the requestor and no one else has shown an interest in it.Status: Stale