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
- use printf %q instead of home made implementation
- use $@
- there is no point using fancy array arrayref and eval in this simple
use case
- printf just iterates parameters and "$@" works just fine
- changes usage:
from: command_array_to_string arref
to: command_array_to_string "${array[@]}"
0 commit comments