Skip to content

Instantly share code, notes, and snippets.

@Sonique
Last active July 23, 2018 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sonique/eb277e4bd447c6bf8727 to your computer and use it in GitHub Desktop.
Save Sonique/eb277e4bd447c6bf8727 to your computer and use it in GitHub Desktop.
Bash: swap files
function swap() { mv $1 $1._tmp; mv $2 $1; mv $1._tmp $2; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment