I have two directories with multiple directories and files Lets say that directory A has some symbolic links to other directories and files and directory B is missing them. What can I do to copy those missing links to directory B recursively I am using unix
Asked
Active
Viewed 278 times
1 Answers
1
Try this:
for link in `find /path/to/A -type l`; do cp $link /path/to/B; done

Ladadadada
- 26,337
- 7
- 59
- 90