Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have BASH Function

MoveToTarget() {
    #This takes to 2 arguments: source and target
    echo ""$1"  "$2""
    cp -r "$1" "$2"
    rm -r "$1"
}

And I'm passing these values in:
First argument: (source)

/home/family/.PROGNAME/updater/update

Second argument: (target)

/home/family/Desktop/client/src

Right now, the folder /update is being moved into /home/family/Desktop/client/src creating /home/family/Desktop/client/src/update. How can I get it so the contents of /home/family/.PROGNAME/updater/update are moved into /home/family/Desktop/client/src? (Re-writing over any existing files), rather than just moving the folder?

Some additional information, the following AutoIt code accomplishes what I need.

 DirCopy($source, $target, 1)
 DirRemove($source, 1)
share|improve this question
6  
Why don't you just use mv? – joschi Jun 14 '11 at 17:51
6  
Is there a reason you aren't using mv? – Kyle Jun 14 '11 at 17:52
2  
Your echo line probably does not do what you expect. You want echo "$1"' '"$2" or echo "$1 $2"; as things stand whitespace in $1 and $2 are being collapsed unexpectedly. – Sorpigal Jun 14 '11 at 20:53
1  
@Sorpigal, I bet that rsmith really wants "\"$1\" \"$2\"" – blahdiblah Jun 14 '11 at 22:01

1 Answer

cp -rf /home/family/.PROGNAME/updater/update/* /home/family/Desktop/client/src

or in your script:

cp -rf "$1"/* "$2"
share|improve this answer

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.