Hacker News new | ask | show | jobs
by 0942v8653 4210 days ago
Wouldn't it be better to simply do

    "$@" "${FD[@]" &
And also remember to

    alias ds='ds '
to enable alias expansion.
1 comments

would you mind explaining why that might be better?
It avoids a call to eval, which is always good. It's also a bit simpler.