I'm using basemount on centos and want to download all the fastq.gz files. I want to use the find
command to locate each zipped file and then download them in a bash loop. The problem is that the command (below) only returns File system loop detected
errors, and Too many symlinks
errors. Any ideas?
find -L . -type f -name 'fastq.gz'
Hi, yes this is good, my mistake was using a
.
instead of the full path. I also used the exec command you used and it worked, so many thanks.I moved this comment to an answer. You can accept (green check mark) it.
I was happy to help!