mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
223 B
Plaintext
11 lines
223 B
Plaintext
| | . |
|
|
| ./a/b/c/../d | a/b/d |
|
|
| / | / |
|
|
| /a/b/../c | /a/c |
|
|
| /a/b/c/../../d/ | /a/d |
|
|
| a/.. | . |
|
|
| a/b/../c | a/c |
|
|
| a/b//////c/./d/../e//d// | a/b/c/e/d |
|
|
| a/b/c | a/b/c |
|
|
| a/b/c/../../../../d/e/../f | ../d/f |
|