개발관련/Linux

Linux : 대상 디렉토리가없는 경우 복사 및 생성

Rateye 2021. 6. 11. 11:06
728x90
반응형
질문 : Linux : 대상 디렉토리가없는 경우 복사 및 생성

존재하지 않는 경우 대상 디렉터리를 만드는 명령 (또는 cp에 대한 옵션)을 원합니다.

예:

cp -? file /path/to/copy/file/to/is/very/deep/there
답변

mkdir -p "$d" && cp file "$d"

cp 에는 그러한 옵션이 없습니다).

출처 : https://stackoverflow.com/questions/1529946/linux-copy-and-create-destination-dir-if-it-does-not-exist
728x90
반응형