| [ CnUnix ] in KIDS 글 쓴 이(By): pkyoung () 날 짜 (Date): 2002년 5월 27일 월요일 오후 02시 05분 10초 제 목(Title): Re: [Q] 디렉토리 구조만 카피하는 방법.. 제컴에서는 (RH linux 7.3 bash) find dir -type d -print | cpio -pd 에서 cpio -pd에서 아규먼트 관련된 에러가 나는군요.. 다음과 같은 script로 해결했습니다. find $src -type d -print | sed -e "s$A$src\/$A$dest\/$A" | xargs -i mkdir -p {} 도움을 주신 두분께 감사드립니다.. ^^ |