Y
Hacker News
new
|
ask
|
show
|
jobs
by
hn92726819
830 days ago
Yes, but rust's quoting does not match shell's quoting. Imagine a path like:
$(rm -rf /*; echo /)
That's a valid Unix path, but rust's quoting does nothing to stop it:
https://play.rust-lang.org/?version=stable&mode=debug&editio...