Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Linux: I want a command (or probably an option to cp) that creates the destination directory if it does not exist.

Example:

cp -? file /path/to/copy/file/to/is/very/deep/there
share|improve this question

3 Answers

up vote 32 down vote accepted
test -d "$d" || mkdir -p "$d" && cp file "$d"

(there's no such option for cp).

share|improve this answer
7  
I don't think you need the test -d: mkdir -p still succeeds even if the directory already exists. – ephemient Oct 7 '09 at 15:33
oops, right. But then, test may be a bash builtin (especially if written as [[ -d "$d" ]]) and mkdir can not ;-) – Michael Krelin - hacker Oct 7 '09 at 17:00
mkdir is a builtin in BusyBox ;) – ephemient Oct 7 '09 at 18:06
ephemient, true ;-) – Michael Krelin - hacker Oct 7 '09 at 19:27
doesn't work in debian, from where did you get that $d? – holms Mar 13 at 13:54
show 1 more comment

Old question but here is an easier answer: cp does support it but you need to read the full documentation (info coreutils 'cp invocation'):

--parents' Form the name of each destination file by appending to the target directory a slash and the specified name of the source file. The last argument given tocp' must be the name of an existing directory. For example, the command:

      cp --parents a/b/c existing_dir

 copies the file `a/b/c' to `existing_dir/a/b/c', creating any
 missing intermediate directories.
/tmp $ mkdir foo
/tmp $ mkdir foo/foo
/tmp $ touch foo/foo/foo.txt
/tmp $ mkdir bar
/tmp $ cp --parents foo/foo/foo.txt bar
/tmp $ ls bar/foo/foo
foo.txt

No need for a script.

share|improve this answer
This doesn't work on Mac OS X, so I guess it's Linux specific. – olt Nov 12 '12 at 16:13
I'd say gnu-specific. If you have macports you can install coreutils and its gcp. – Michael Krelin - hacker Mar 13 at 17:44

Shell function that does what you want, calling it a "bury" copy because it digs a hole for the file to live in:

bury_copy() { mkdir -p `dirname $2` && cp "$1" "$2"; }
share|improve this answer
You should have quotation marks around the dirname $2 too – Kalmi Oct 7 '09 at 22:22
@Kalmi, for proper quotation you'd also want to quote $2 as an argument to dirname. Like mkdir -p "$(dirname "$2")". Without this quoting $2 in cp is useless ;) – Michael Krelin - hacker Mar 13 at 17:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.