#!/bin/bash
# scl <action> <collection1>...<collectionN> <command> doesn't handle multiple params for command.
# If it did we would use:  exec scl enable ruby193 "$@"

COMMAND="$(printf "%q " "$@")"
exec scl enable ruby193 "$COMMAND"
