우분투

[우분투] 재귀적으로 파일 및 폴더 제거

IntegerString 2023. 11. 19. 11:20
├── 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 {} \;