vote up 1 vote down star

Here is what I tried but failed:

[root@file nutch-0.9]# cp -f urls-resume /nosuchdirectory/hi.txt
cp: cannot create regular file `/nosuchdirectory/hi.txt': No such file or directory
[root@file nutch-0.9]#

besides,any way to make ">" work that way,say to create a directory when need?

[root@file nutch-0.9]# echo test > /nosuchtest/hi.txt
-bash: /nosuchtest/hi.txt: No such file or directory
flag

40% accept rate

3 Answers

vote up 4 vote down

I didn't know you could do that with cp.

You can do it with mkdir ..

mkdir -p /var/path/to/your/dir
link|flag
1  
cp(1) doesn't. mkdir -p /foo/bar && cp myfile "$_" is indeed the only way to do this reliably. – lhunath Jun 4 at 5:53
vote up 0 vote down

There is no such option. What you can do is to run mkdir -p before copying the file

I made a very cool script you can use to copy files in locations that doesn't exist

#!/bin/bash
if [ ! -d "$2" ]; then
    mkdir -p "$2"
fi
cp -R "$1" "$2"

Now just save it, give it permissions and run it using

./cp-improved SOURCE DEST

I put -R option but it's just a draft, I know it can be and you will improve it in many ways. Hope it helps you

link|flag
Quote your parameter expansions, please. Or you'll suffer bugs introduced by wordsplitting and pathname expansion. Put "" around all your $foo's. – lhunath Jun 4 at 5:50
vote up 0 vote down

As far as I know, you can only created directories if they exists at the source, so: cp -R /usr/local /usr/local-backup

will create directories further down the hierarchy.

link|flag

Your Answer

Get an OpenID
or

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