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

when i use mv command in aix to move a file to a destination directory ,it should fail if another file with the same name exists in that destination. But what happens now is it replaces the file in destination. Pls help.Is there any other command should i use or how should i use mv command.

share|improve this question

closed as off topic by Shawn Chin, casperOne Jan 2 at 16:24

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 1 down vote accepted

Something like this:

$ TDIR="/home/xyz"
$ FILE="f1"
$ [ -f $TDIR/$FILE ] || mv $FILE $TDIR/$FILE

This will move the file named f1 only if it is not present in the target directory

share|improve this answer
Thanks Guru.Is there any other way we can do? – user1929905 Jan 2 at 12:35

Many versions of mv support a -n option. To be fully portable, you can do:

echo no | mv -i a b

If you are moving multiple files, you can do:

yes no | mv -i a b target-dir
share|improve this answer

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