Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

0 like 0 dislike
243 views
in Others by
retagged by
I tried using

cp <source-directory> <name-of-destination-directory>

 

But it throws an error that <source-directory> is not a file and its not allowing me to copy the same.

1 Answer

0 like 0 dislike
by The go-to Tester (181 points)
selected by
 
Best answer

You can use

 

cp -Rvf <source-directory> <name-of-destination-directory>

 

Breakup:

-R is recursive

-v is verbose

-f is force


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

...