From 43a0705a913819406000c5c1d63dbd359b18cc8c Mon Sep 17 00:00:00 2001 From: zerandomalt <33420785+zerandomalt@users.noreply.github.com> Date: Mon, 11 Mar 2019 15:04:12 +0000 Subject: [PATCH] Updated format to be more consistent (#24178) Changed the usage section to be more consistent with the rest of the directory, also added a link to SS64 for further details. --- guide/english/bash/bash-mv/index.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/guide/english/bash/bash-mv/index.md b/guide/english/bash/bash-mv/index.md index 354125147d..a24d5c63d6 100644 --- a/guide/english/bash/bash-mv/index.md +++ b/guide/english/bash/bash-mv/index.md @@ -4,16 +4,13 @@ title: Bash mv ## Bash command: mv -**Rename file.** +The mv command is used to move files and folders. -``` -mv -``` +### Usage - -**Moves files and folders.** ``` mv + ``` The first argument is the file you want to move, and the second is the location to move it to. It can also be used to rename a file, by inputting 2 file names as parameters, like so: `mv originalFilename.txt newFilename.txt` @@ -29,4 +26,5 @@ This command is capable of modifying many files at once with ease. This can be ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Mv) +* [SS64](https://ss64.com/bash/mv.html) * [Man pages](http://man7.org/linux/man-pages/man1/mv.1.html)