A couple of things. Easiest is to change and use
$ find 'Test Folder' -type d -print0 | xargs -0 rm -rf
파일명 전체를 인수로 받기 위해 -print0을 사용한다.
Another choice is
$ find 'Test Folder' -type d -exec \'{}\' \;
'OS > Linux' 카테고리의 다른 글
[RHEL] When I use the SSH method to transfer a kdump vmcore, the resultant vmcore.flat file is unreadable by crash. What am I doing wrong and how can I fix this? (0) | 2014.08.14 |
---|---|
[RHEL] How to troubleshoot kernel crashes, hangs, or reboots with kdump on Red Hat Enterprise Linux (0) | 2014.08.14 |
[RHEL] 리눅스 부팅 프로세스 연구 (한글) (0) | 2014.06.24 |
[RHEL] 리눅스 x86 부팅 과정 (0) | 2014.06.24 |
[RHEL] Linux initial RAM disk (initrd) overview (0) | 2014.06.24 |
[RHEL] hugetlbpage 매뉴얼 (0) | 2014.06.24 |
[RHEL] Linux HugePages (0) | 2014.06.24 |
[RHEL] Understanding PAM (0) | 2014.06.24 |
[RHEL] How PAM Works (0) | 2014.06.24 |
[RHEL] Tuning Red Hat Enterprise Linux for Oracle and Oracle RAC performance (0) | 2014.06.09 |