I have multiple sub directories in which i have multiple csv file. I wanted to copy all the files alone into a different directory.
Am able to find or list the files using wildcards
find -name '*.csv'
ls /**/'*.csv'
The challenge is all the directory names and file names are having spaces and so am unable to achieve the expected result.
Any suggestion will be helpful