for .. in (2)

■コード

#!/bin/bash

for src in `find /work/data/ -type f -print | grep tsv`

do

echo ${src}

done

exit 0