1--- 2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3SPDX-License-Identifier: curl 4Long: path-as-is 5Help: Do not squash .. sequences in URL path 6Added: 7.42.0 7Category: curl 8Multi: boolean 9See-also: 10 - request-target 11Example: 12 - --path-as-is https://example.com/../../etc/passwd 13--- 14 15# `--path-as-is` 16 17Tell curl to not handle sequences of /../ or /./ in the given URL 18path. Normally curl squashes or merges them according to standards but with 19this option set you tell it not to do that. 20