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

Fix stripped double quotes #12

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

Fix stripped double quotes #12

wants to merge 1 commit into from

Conversation

GeoffreyFrogeye
Copy link

If you are calling a program with some double quotes " within arguments, those get stripped.

Example:

$ /usr/bin/ls -l --time-style=+"%d.%m.%Y %H:%M"
total 0
-rw-r--r-- 1 geoffrey users 0 18.05.2015 20:33 bar
$ ls -l --time-style=+"%d.%m.%Y %H:%M"
ls: cannot access %H:%M: No such file or directory
ls: cannot access %H:%M: No such file or directory
$ ls -l --time-style=+"%d.%m.%Y %H:%M" .
ls: cannot access %H:%M: No such file or directory
ls: cannot access %H:%M: No such file or directory
.:
total 0
-rw-r--r-- 1 geoffrey users 0 18.05.2015 bar

This PR fixes this behaviour.

Fix for calling programs with double quotes `"` within arguments, which would get stripped.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant