Please help me in solving the below issue:
I want copy a file say info.txt into multiples directories and their sub-directories .
I used this command:
- go to parent directory.
find . -type d -exec cp ./info.txt {}/ \;
But I'm getting the below error:
cp: cannot create regular file /info.txt : permission denied.
