Sarathlal N

Move files and folders via command line - Linux

To move files and folders in Linux via command line, we can use mv command. It is very simple and essential one for a Linux user.

mv ~/Downloads/music.mp3 ~/Music/

In the above example, the music.mp3 is the file to be moved and user’s Music folder is the destination folder.

Consider that we have few MP3 files with .mp3 extension in our Download folder and we want to move all of them to Music folder. We can quickly move all of them with a single command, like so:

mv ~/Downloads/*.mp3 ~/Music/

If you want to moove one file into the parent directory of the current working directory, just enter command like so:

mv testfile.doc ../

The ../ means to move the folder up one level. If we are more inside, like ~/Downloads/today/, we can still easily move that file with:

mv testfile.doc ../../

We just want to remember that, each ../ represents one level up. That’s all.

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.