charles-dyfis-net (Charles Duffy)
- Login: charles-dyfis-net
- Email: charles@dyfis.net
- Registered on: 07/17/2014
- Last sign in: 10/15/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/17/2014
-
09:54 PM Ruby Bug #10055 (Closed): Shellwords.shellsplit() does not match POSIX sh behavior for backslashes within double-quoted strings
- In POSIX sh, the following commands are identical:
~~~
printf '%s\n' hello world
printf "%s\n" hello world
~~~
However, Shellwords.shellsplit() parses them differently:
~~~
head :001 > require 'shellwords'
=> true
head :0...