2 lines
99 B
Bash
2 lines
99 B
Bash
for lib in $(cat libs.txt); do find $1 -name "$lib" | sed 's|\\|/|g' | xargs -I% -- cp '%' .; done
|