Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Escape single quotes for WSL #18007

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

a4lg
Copy link

@a4lg a4lg commented Oct 8, 2024

Summary of the Pull Request

This commit escapes single quotes ' (allowed in the Win32 subsystem) with '\'' (finish quote, print a single quote then begin quote again), which is a valid escape in the context of the POSIX shell, when a file/folder is dropped to a WSL tab.

Note: '"'"' on the first submission of this PR.

References and Relevant Issues

Detailed Description of the Pull Request / Additional comments

This is a follow-up of #16214 and fixes #18006.

Validation Steps Performed

PR Checklist

@microsoft-github-policy-service microsoft-github-policy-service bot added the Issue-Bug It either shouldn't be doing this or needs an investigation. label Oct 8, 2024
@a4lg
Copy link
Author

a4lg commented Oct 8, 2024

@microsoft-github-policy-service agree

@lhecker
Copy link
Member

lhecker commented Oct 8, 2024

Would it be simpler to paste with double quotes and handle escaping of significant characters like $, ', or " with backspaces?

@a4lg
Copy link
Author

a4lg commented Oct 8, 2024

@lhecker I would prefer searching for just one character ('), not three (three you mentioned minus ' plus backquote) I guess. Plus, single quote approach makes making mistakes or shell-dependent sequences almost impossible.

The inserting sequence '"'"' is odd (I have to admit) but in both quote cases (double and single), we would not escape so frequently.

@a4lg
Copy link
Author

a4lg commented Oct 8, 2024

Also, escaping just like @sh formatting logic in jq seems simpler. Will change:

Old: '"'"'
New: '\''

Additional references:

  1. POSIX Shell & Utilities: 2.2 Quoting
  2. POSIX Shell & Utilities: 2.2.1 Escape Character (Backslash)
  3. jq 1.7 Manual: Format strings and escaping (Examples)

This commit escapes single quotes (allowed in the Win32 subsystem) with
`'\''` (finish quote, print a single quote then begin quote again),
which is a valid escape in the context of the POSIX shell, when a file/
folder is dropped to a WSL tab.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Issue-Bug It either shouldn't be doing this or needs an investigation.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

WSL paths need further escape of single quotes
2 participants