linux日常使用命令总结

一、文件复制

在 Linux 中,复制文件是一个常见的操作,通常使用 cp 命令来完成。cp 命令提供了丰富的选项来满足不同的需求。下面是使用 cp 命令复制文件的一些基本用法和示例。

  • 基本用法

cp 命令的基本语法如下:

bash 复制代码
cp [选项] 源文件 目标文件或目录
  • 常用选项

i:交互模式,在覆盖现有文件之前询问用户。
r: 或 -R:递归复制目录。
v:详细模式,显示复制的详细信息。
p:保留源文件的属性(权限、时间戳等)。
u:仅在源文件比目标文件新或目标文件不存在时复制。

示例
1. 复制单个文件

/path/to/source-file 复制到 /path/to/destination-file

Sh

bash 复制代码
cp /path/to/source-file /path/to/destination-file

2. 复制目录

/path/to/source-directory 复制到 /path/to/destination-directory

S

bash 复制代码
cp -r /path/to/source-directory /path/to/destination-directory

3. 复制多个文件到一个目录

将多个文件复制到一个目录:

Sh

bash 复制代码
cp file1 file2 file3 /path/to/destination-directory

4. 递归复制目录并保留属性

/path/to/source-directory 复制到 /path/to/destination-directory 并保留所有属性:

Sh

bash 复制代码
cp -rp /path/to/source-directory /path/to/destination-directory

5. 交互模式下复制文件

在覆盖现有文件之前询问用户:

bash 复制代码
cp -i /path/to/source-file /path/to/destination-file

6. 详细模式复制文件

显示复制过程中的详细信息:

bash 复制代码
cp -v /path/to/source-file /path/to/destination-file

7. 仅在文件较新时复制

仅在源文件比目标文件新或目标文件不存在时复制:

bash 复制代码
cp -u /path/to/source-file /path/to/destination-file

示例脚本

假设你需要编写一个脚本来复制一个文件,并在文件已存在时询问用户是否覆盖:

bash 复制代码
#!/bin/bash

# 定义源文件和目标文件路径
source_file="/path/to/source-file"
destination_file="/path/to/destination-file"

# 检查目标文件是否存在
if [ -e "$destination_file" ]; then
  read -p "目标文件已存在,是否覆盖?(y/N): " answer
  case "$answer" in
    [Yy]* ) cp -i "$source_file" "$destination_file";;
    * ) echo "未覆盖目标文件。"; exit 0;;
  esac
else
  # 目标文件不存在,直接复制
  cp "$source_file" "$destination_file"
fi

echo "文件复制完成。"

使用其他工具复制文件

除了 cp 命令之外,还有一些其他工具可以用来复制文件,例如 rsync
1. 使用 rsync 命令复制文件
rsync 命令是一个更加强大的文件复制工具,它支持增量复制,即只复制文件中变化的部分,从而节省了大量的时间和带宽。

示例

复制单个文件

/path/to/source-file 复制到 /path/to/destination-file

Sh

bash 复制代码
rsync -av /path/to/source-file /path/to/destination-file

复制目录

/path/to/source-directory 复制到 /path/to/destination-directory

bash 复制代码
rsync -av /path/to/source-directory /path/to/destination-directory

递归复制目录并保留属性

/path/to/source-directory 复制到 /path/to/destination-directory 并保留所有属性:

bash 复制代码
rsync -avz /path/to/source-directory /path/to/destination-directory

这里的 -z 选项表示启用压缩,可以在远程复制时节省带宽。

使用 tar 命令复制文件
tar 命令主要用于创建和提取存档文件,但它也可以用来复制文件。使用 tar 复制文件的优点是可以一次性复制多个文件,并且可以保留文件属性。

示例

复制单个文件

/path/to/source-file 复制到 /path/to/destination-file

bash 复制代码
tar cf - /path/to/source-file | tar xf - -C /path/to/destination-file

复制目录

/path/to/source-directory 复制到 /path/to/destination-directory:

bash 复制代码
tar cf - /path/to/source-directory | tar xf - -C /path/to/destination-directory

二、文件的压缩和解压

1、压缩,tar,zip等

2、解压

解压文件夹下所有文件的脚本命令

bash 复制代码
#!/bin/bash

# 指定包含 .tar文件的目录
dir="/var/lib/clickhouse/backup/20240829/shadow/webfunny_cloud_db/"

# 遍历目录中的所有 .tar 文件
for tar_file in $(find "$dir" -type f -name "*.tar"); do
  # 检查文件是否存在
  if [ -f "$tar_file" ]; then
    # 解压每个 .tar 文件
    echo "Extracting $tar_file..."
    result="${tar_file%.tar}"
    aw=$(echo "$tar_file" | awk -F 'default_' '{print $1}')
    a="default"
    #mkdir "$result"
    mkdir "$aw$a"
    tar -xvf "$tar_file" -C "$aw$a"
  else
    echo "File does not exist: $tar_file"
  fi
done

以上是linux的一些日常使用命令总结,感兴趣的同学可以直接访问webfunny前端监控和前端埋点系统

相关推荐
码农君莫笑2 分钟前
Blazor项目中使用EF读写 SQLite 数据库
linux·数据库·sqlite·c#·.netcore·人机交互·visual studio
dessler17 分钟前
Docker-如何启动docker
运维·docker·云原生·容器·eureka
zhy2956317 分钟前
【DOCKER】基于DOCKER的服务之DUFS
运维·docker·容器·dufs
无为之士22 分钟前
Linux自动备份Mysql数据库
linux·数据库·mysql
秋名山小桃子31 分钟前
Kunlun 2280服务器(ARM)Raid卡磁盘盘符漂移问题解决
运维·服务器
与君共勉1213832 分钟前
Nginx 负载均衡的实现
运维·服务器·nginx·负载均衡
岑梓铭39 分钟前
(CentOs系统虚拟机)Standalone模式下安装部署“基于Python编写”的Spark框架
linux·python·spark·centos
努力学习的小廉39 分钟前
深入了解Linux —— make和makefile自动化构建工具
linux·服务器·自动化
MZWeiei43 分钟前
Zookeeper基本命令解析
大数据·linux·运维·服务器·zookeeper
7yewh1 小时前
嵌入式Linux QT+OpenCV基于人脸识别的考勤系统 项目
linux·开发语言·arm开发·驱动开发·qt·opencv·嵌入式linux