Copying Files with Fish
May 14, 2022
I needed to copy certain files from a bunch of subfolders to another folder. This turned out to be an easy way to do in Fish shell.
cp (find . -name '<name>') <target folder>
May 14, 2022
I needed to copy certain files from a bunch of subfolders to another folder. This turned out to be an easy way to do in Fish shell.
cp (find . -name '<name>') <target folder>