This question is regarding the Unix cp
command.
What is the $(...)
operator doing below?
cp $(bundle show bootstrap-sass)/vendor/assets/stylesheets/bootstrap.scss \
app/assets/stylesheets/bootstrap-custom.scss
I came across this notation from the page: https://github.com/twbs/bootstrap-sass#usage
I checked the man page for cp and did not see any references to this operation. I'm new to *nix. Thanks.