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.
Looking for a skilled WordPress/WooCommerce developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!
Recent Posts
- Understanding the Singleton Pattern and Using Traits to Achieve Singleton in WordPress Plugin Development
- REST API Methods Explained with Best Practices for Building Clean and Secure APIs
- My 28-Day Plan to Master Modern WordPress Development Using AI Tools
- Scaling WordPress - How Custom Database Tables Solve the Post Meta Bottleneck
- WordPress Transients Explained - A Developer's Guide to Site Performance
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.