A Fine-Tuned Universe

cut 명령어 이용해서 파일이름 일괄 변경 본문

Bioinformatics

cut 명령어 이용해서 파일이름 일괄 변경

정재준 2022. 4. 12. 11:25
728x90

NCBI Assembly에서 다운로드 받은 파일이름 바꾸기

참고용으로 남겨두고 

더 자세한 내용은

 

http://blog.genoglobe.com/2019/02/bash-cut.html

 

[BASH] cut 명령을 이용하여 파일 이름을 간략하게 정리하기

cut - remove sections from each line of files (print selected parts of lines from each file to standard out) 커맨드 라인에서 man cut이라고 치면 나오는 설명...

blog.genoglobe.com

$ ls | while read f
> do
> cp $f $(echo $f | cut -d'_' -f 1,2).fna
> done

 

LIST