vote up 1 vote down star

Can two files be swapped in bash?

Or, can they be swapped in a shorter way than this:

cp old tmp
cp curr old
cp tmp curr
rm tmp
flag

8 Answers

vote up 3 vote down check

Add this to your .bashrc:

function swap()         
{
    local TMPFILE=tmp.$$
    mv "$1" $TMPFILE
    mv "$2" "$1"
    mv $TMPFILE "$2"
}
link|flag
vote up 6 vote down
tmpfile=$(mktemp $(dirname "$file1")/XXXXXX)
mv "$file1" "$tmpfile"
mv "$file2" "$file1"
mv "$tmpfile" "$file2"
link|flag
Upmod for using mktemp – Hasturkun Jul 12 at 12:46
vote up 4 vote down

Just to explain, the reason mv is much faster than cp, is that mv just changes directory entries, while cp actually copies the whole file contents.

link|flag
vote up 0 vote down

using mv means you have one fewer operations, no need for the final rm, also mv is only changing directory entries so you are not using extra disk space for the copy.

Temptationh then is to implementat a shell function swap() or some such. If you do be extremly careful to check error codes. Could be horribly destructive. Also need to check for pre-existing tmp file.

link|flag
vote up 6 vote down

You could simply move them, instead of making a copy.

#!/bin/sh
# Created by Wojtek Jamrozy (www.wojtekrj.net)
mv $1 cop_$1
mv $2 $1
mv cop_$1 $2

http://www.wojtekrj.net/2008/08/bash-script-to-swap-contents-of-files/

link|flag
vote up 1 vote down
mv old tmp
mv curr old
mv tmp curr
link|flag
vote up 4 vote down
$ mv old tmp && mv curr old && mv tmp curr

is slightly more efficient!

link|flag
3  
...and doesn't mv your files into nirvana, if there is a problem with tmp. +1 – Boldewyn Jul 13 at 11:36
vote up 0 vote down

Surely mv instead of cp?

link|flag

Your Answer

Get an OpenID
or

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