Is there a one-line bash shortcut for making a copy of a file in another directory, into that same directory?

For example, creating new Apache vhost using an existing vhost file as a template, without leaving the directory you are in:

sudo cp -p /etc/apache2/sites-available/www.example.com /etc/apache2/sites-available/test.example.com
link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Something like:

sudo cp -p /etc/apache2/sites-available/{www.example.com,test.example.com}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.