Is there a way to use "install" for installing multiple files at once using a "wildcard" pattern (and still have "install" create the leading directory hierarchy)?
I've tried several different ways:
install -D -t /dest/path /source/path/*.py
install -D -t /dest/path/ /source/path/*.py
install -D /source/path/*.py /dest/path
install -D /source/path/*.py /dest/path/
Please help... for each trial it takes a lot of time (I am using pbuilder
to test my package each time).