Function that swaps the filenames of two given files.

flipf(){ if [ -f "$1" -a -f "$2" ]; then mv "$1" "$1.$$" && mv "$2" "$1" && mv "$1.$$" "$2" || echo "$!"; else echo "Missing a file: $!"; fi; }
(Changed to "bartonskis" suggestion.)

-1
By: Void42
2010-12-16 10:38:28

What Others Think

does not account for spaces etc in filenames or if one command fails (use && instead)
bashrc · 782 weeks ago
Ok, changed it. Now it works with spaces in filenames and checks if files exist.
Void42 · 782 weeks ago
I think that you can leave out '&& echo "Success"'... we expect not to see anything if it works. The warning message could be more descriptive, and should include "$!" I think that I would write this as flipf(){ if [ -f "$1" -a -f "$2" ]; then mv "$1" "$1.$$" && mv "$2" "$1" && mv "$1.$$" "$2" || echo "$!"; else echo "Missing a file: $!"; fi; }
bartonski · 782 weeks ago
Why do people use echo "Success"? It's annoying and no production script ever uses it. How do people learn it, and where does it come from?
kaedenn · 782 weeks ago

What do you think?

Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?

You must be signed in to comment.

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.

Share Your Commands



Stay in the loop…

Follow the Tweets.

Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.

» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10

Subscribe to the feeds.

Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):

Subscribe to the feed for: