Requires escaped double-quotes for cross-platform globstars **/*
See original GitHub issueOne thing i noticed in the documentation is that your examples show single-quoted strings in order to allow for cross-platform compatibility. I have tried this and it does not work properly in Windows. However using ESCAPED DOUBLE-QUOTES works great!
So instead of…
copyfiles -f './foo/*_/_.txt' out
try…
copyfiles -f \"./foo/*_/_.txt\" out
Can you please update the documentation to show this?
Thanks!
Jeremy Moritz
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Escaping double quotes in TF2 scripting - Stack Overflow
Using ALT+0145 and ALT+0146 gives you the starting and ending single quotes (respectively) that you need. Replacing those two double quotes ...
Read more >Document the need for additional \-escaping of double quotes ...
In an ideal world, PowerShell would transparently handle any additional, platform-specific escaping needs for interfacing with external ...
Read more >Using quotation marks with strings in the AWS CLI
If you use single quotation marks, you do not need to escape double quotation marks embedded in the JSON string. However, you need...
Read more >Multi Row Variable Set doesn't escape double quotes
Enter values for required fields and click Order Now. Open the Requested Item. 4. The row entered in MRVS is no longer present....
Read more >Quotes - R
Escaping a character not in the following table is an error. Single quotes need to be escaped by backslash in single-quoted strings, and...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
readme is updated
same here