Skip to content

Instantly share code, notes, and snippets.

@pcon
Created July 3, 2012 14:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pcon/3039929 to your computer and use it in GitHub Desktop.
Save pcon/3039929 to your computer and use it in GitHub Desktop.
swap function
function swap() {
TMP_NAME="TMP_$RANDOM"
mv "$1" "/tmp/$TMP_NAME" && mv "$2" "$1" && mv "/tmp/$TMP_NAME" "$2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment