From 116db609127888e1187786cf034bfbf923779fb2 Mon Sep 17 00:00:00 2001 From: tasmainawolf <44279746+tasmainawolf@users.noreply.github.com> Date: Fri, 16 Nov 2018 00:09:06 +0800 Subject: [PATCH] Adding additional information and link (#21786) --- guide/english/bash/bash-mv/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/bash/bash-mv/index.md b/guide/english/bash/bash-mv/index.md index fd3f7315a4..354125147d 100644 --- a/guide/english/bash/bash-mv/index.md +++ b/guide/english/bash/bash-mv/index.md @@ -21,6 +21,7 @@ The first argument is the file you want to move, and the second is the location Commonly used options: - `-f` to force move them and overwrite files without checking with the user. - `-i` to prompt confirmation before overwriting files. +- `-n` do not overwrite an existing file ### Warning @@ -28,3 +29,4 @@ This command is capable of modifying many files at once with ease. This can be ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Mv) +* [Man pages](http://man7.org/linux/man-pages/man1/mv.1.html)