What is the method of moving and copying folders under Linux?

WBOY
Release: 2023-05-21 14:13:45
forward
2283 people have browsed it

1. Copy Folder

Copying a folder is the process of copying all the contents of a folder to another location. The following are some basic command options and parameters:

cp [选项] 源目录 目标目录
Copy after login

Among them, the cp command is used to copy files or folders. You need to provide the source and destination directory addresses and specify the locations of the source and destination folders.

For example, if you want to copy all the contents in the /home/lihuanyu/Data/Mini_imagenet/MyImagenet directory to /home/lihuanyu/code/06paper1/01model_pretraining/data / directory, you can use the following command:

cp -r /home/lihuanyu/Data/Mini_imagenet/MyImagenet /home/lihuanyu/code/06paper1/01model_pretraining/data/
Copy after login

In this example, the -r parameter means recursively copy the entire directory. You can also change this parameter to control how replication behaves.

2. Move Folder

Moving a folder is the process of moving a folder from one location to another. The following are some basic command options and parameters:

mv [options] source directory target directory

Among them, the mv command is used to move files or folder. You need to provide the source and destination directory addresses and specify the locations of the source and destination folders.

For example, if you want to move the /home/user/project directory to the /backup/project directory, you can use the following command:

mv /home/lihuanyu/Data/tiny-imagenet-200   /home/lihuanyu/code/06paper1/01model_pretraining/data/
Copy after login

In this example, the mv command will move the /home/lihuanyu/Data/tiny-imagenet-200 directory to /home/lihuanyu/code/06paper1 /01model_pretraining/data/ directory.

3. Common application cases

Now let’s see how to use the move and copy operations of folders in actual applications.

a. Copy backup data

Suppose you have an important configuration file stored in the /etc directory. To back up this file, you can copy the entire directory to the backup directory. The following is an example of copying the /etc directory to the backup directory /backup/etc:

cp -r /etc /backup

b. Migrate folders to other locations

If you want to move a completed project to another location to free up local disk space, you can use the mv command to Move folders. The following is an example of moving the /home/user/project directory to the /backup directory:

mv /home/user/project /backup

c. Archive data

When working with larger folders, you may need to archive data to save disk space. The tar command can package multiple files into a single archive. The following is an example of archiving the /home/user/project directory into the /backup/project.tar.gz file:

tar -czvf /backup/project.tar.gz /home/user/project

In this example, -c means creating a new archive file, -z Indicates using the gzip algorithm to compress files, -v indicates displaying progress information and outputting it to the terminal, -f indicates specifying the output archive file name.

The above is the detailed content of What is the method of moving and copying folders under Linux?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!