You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can it be used, for example, to pass entire command line array to a subprocess unmodified without restrictions, like xargs?
Does it start from std::env::args (simpler, but makes this task impossible) or from std::env::args_os (proper way, but tricky)?
The text was updated successfully, but these errors were encountered:
Currently the launch method uses std::env::args but i will consider transitioning into args_os as nothing too complex is done to strings other than strip_prefix
Can it be used, for example, to pass entire command line array to a subprocess unmodified without restrictions, like
xargs
?Does it start from
std::env::args
(simpler, but makes this task impossible) or fromstd::env::args_os
(proper way, but tricky)?The text was updated successfully, but these errors were encountered: