> For the complete documentation index, see [llms.txt](https://linux-tutorial-cli.gitbook.io/linux-cli-tutorial/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://linux-tutorial-cli.gitbook.io/linux-cli-tutorial/txt-files/mmove.md).

# mmove

## mmove

The `mmove` command in Linux is used to move files from one directory to another. It is a more powerful alternative to the `mv` command, as it allows you to move multiple files at once and to specify the destination directory.

The syntax of the `mmove` command is as follows:

```
mmove [options] source-directory destination-directory
```

The `source-directory` argument specifies the directory that contains the files that you want to move.

The `destination-directory` argument specifies the directory that you want to move the files to.

The `options` argument specifies additional options for moving the files. The most common options are as follows:

* `-f`: Force the move, even if the destination directory already exists.
* `-i`: Interactive mode, which will prompt you to confirm each move.
* `-v`: Verbose mode, which will print more information about the move.

For example, the following command moves all files from the directory `/home/user/old_files` to the directory `/home/user/new_files`:

```
mmove /home/user/old_files /home/user/new_files
```

The `mmove` command is a useful tool for moving files from one directory to another. It is more powerful than the `mv` command and can be used to move multiple files at once.

Here are some additional things to keep in mind about the `mmove` command:

* The `mmove` command can only be used to move files within the same file system.
* The `mmove` command will not overwrite existing files in the destination directory.
* The `mmove` command can be used to move files to a remote directory.

It is important to be aware of these limitations when using the `mmove` command, so that you do not accidentally overwrite files or move files to an incorrect directory.

## help

```
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://linux-tutorial-cli.gitbook.io/linux-cli-tutorial/txt-files/mmove.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
