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 \'{}\' \; 

+ Recent posts