LeiYuhou (Yuhou Lei)
- Login: LeiYuhou
- Registered on: 10/05/2018
- Last sign in: 12/27/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/05/2018
-
08:29 AM Ruby Bug #15204: globbing should be prevented when wildcard is surrounded by double quotes in the ruby's command line
- sorry, maybe some text was modified by the bug tracker Editor :-)
In Linux's bash
~~~ text
$ ./tt "*.txt"
it's output is : ["*.txt"]
~~~
my patch's content:
~~~ text
Index: win32/win32.c
=======================================... -
08:23 AM Ruby Bug #15204 (Rejected): globbing should be prevented when wildcard is surrounded by double quotes in the ruby's command line
- script tt like following:
~~~ ruby
#!/usr/bin/ruby
p ARGV
~~~
if a command line argument contains wildcard such as * or ? is surrounded by double quotes , the script's results are different between Linux and Windows.
when run t...