덱스트란파일을 변환하는 도구입니다. 일반적인 사용법은 입니다 . 확장자 대신 확장자를 사용하여 명령에서 파일 이름을 얻는 dextract -q test.h5 > test.fastq
방법과 같이 find 명령과 어떻게 결합합니까 ?find All_RawData/Each_Cell_Raw/ -name "*.bax.h5" | xargs -I {} dextract -q {} >
>
find
fastq
h5
답변1
이와 같이:
find All_RawData/Each_Cell_Raw -name '*.bax.h5' -exec sh -c 'for f do dextract -q "$f" > "${f%.h5}.fastq"; done' find-sh {} +
더 쉽게 읽을 수 있도록 몇 가지 줄 바꿈이 있습니다.
find All_RawData/Each_Cell_Raw -name '*.bax.h5' -exec sh -c '
for f
do dextract -q "$f" > "${f%.h5}.fastq"
done' find-sh {} +
설명과 근거는 다음을 참조하세요.https://unix.stackexchange.com/a/321753/135943.