-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
env: split-string implementation #1326
Comments
What cool feature? Care to elaborate? |
It would be great if you port this functionality. |
Which functionality? |
-S, --split-string=S process and split S into separate arguments;
used to pass multiple arguments on shebang lines |
* handles the basic version of splitting strings (-S / --split-string), which is typically used when passing arguments to an interpreter via shebang. the implementation is basic in the sense that quoted strings are not handled. * example shebang passing arguments to perl #!/usr/bin/env -S perl -T -w
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Hey, I'd like to take this on if it's still needed? I had a quick look but I don't see a fix in the main branch. |
@Hwatwasthat seems like someone is working on it here: #5801 |
Ah I see, they didn't reference either of the issues connected to this so I missed it! I will find a comfortable place to step in sometime. |
There is a cool feature in in env (GNU coreutils) 8.30:
How about to implement this?
The text was updated successfully, but these errors were encountered: