1. 특정 폴더 일괄 지우기(특정 폴더)
find . -name "test" -type d -exec rm -rf {} \;
or
find . -name "test*" -type d | xargs rm -rf
하위까지(APM),ㅡㅡㅡㅡㅡ
find ./ -name "obj" -type d | xargs rm -rf
find ./ -name "obj" -type d | xargs rm -rf
find ./ -name "obj" -type d | xargs rm -rf
2. 특정 파일 일괄 지우기
find . -name "test" -type f -exec rm -rf {} \;
or
find . -name "*test*" -type f | xargs rm -rf
'리눅스 > Ubuntu 18.04.5 LTS' 카테고리의 다른 글
Redis의 설정 파일(redis.conf)에서 maxclients 옵션을 사용하여 허용할 최대 클라이언트 연결 수를 설정할 수 있습니다. (0) | 2024.08.30 |
---|---|
Linux에서 C# 프로젝트를 설정하고 빌드하는 과정(Console/Wpf) (0) | 2024.08.30 |
(2024.01.16)Ubuntu 20.04 환경에서 한글.언어설정(?) (0) | 2024.01.21 |
(2024.01.16)Ubuntu 20.04 환경에서 ftp 설치 (0) | 2024.01.16 |
(2024.01.16)Ubuntu 20.04 환경에서 Telnet을 설치하는 방법 (0) | 2024.01.16 |