├── np4-bs256-da0-node4
│ ├── checkpoint.1.pth.tar (target_file)
│ ├── checkpoint.2.pth.tar (target_file)
│ ├── nccl (target_dir)
│ └── torch.log
├── np4-bs256-da2-node5
│ ├── checkpoint.1.pth.tar (target_file)
│ ├── checkpoint.2.pth.tar (target_file)
│ ├── nccl (target_dir)
│ └── torch.log
├── np4-bs256-da1-node6
│ ├── checkpoint.1.pth.tar (target_file)
│ ├── checkpoint.2.pth.tar (target_file)
│ ├── nccl (target_dir)
│ └── torch.log
└── np4-bs256-da2-node7
├── checkpoint.1.pth.tar (target_file)
├── checkpoint.2.pth.tar (target_file)
├── nccl (target_dir)
└── torch.log
디렉터리 구조가 위와 같을 때
1. target_file들만 삭제하고 싶은 경우
find np4-bs256-da*-node* -type f -name "*.tar" -exec rm {} \;
2. target_dir들만 삭제하고 싶은 경우
find np4-bs256-da*-node* -type d -name "nccl" -exec rm -r {} \;
'우분투' 카테고리의 다른 글
[우분투] 데스크탑 버전에서 서버 버전으로 변경 (0) | 2023.08.17 |
---|---|
[우분투] 인피니밴드 인터페이스 이름 변경 (0) | 2023.08.12 |
[우분투] 인피니밴드 링크 레이어 변경 (0) | 2023.08.10 |
[우분투] 비밀번호 입력 없이 sudo 사용 (0) | 2023.08.10 |
[우분투] 구글 드라이브 마운트 (0) | 2023.07.31 |