Linux 常用命令之文件处理

Linux 文件处理命令指南

文件查看命令

cat (Concatenate and display files)
# 显示文件内容
cat file.txt# 显示多个文件的内容
cat file1.txt file2.txt# 将文件内容合并并输出到新文件
cat file1.txt file2.txt > combined.txt# 以行号显示文件内容
cat -n file.txt
tac (Display file contents in reverse)
# 反向显示文件内容
tac file.txt
more (View file contents one page at a time)
# 分页查看文件内容
more file.txt# 搜索关键字
more +/keyword file.txt
less (View file contents interactively)
# 交互式查看文件内容
less file.txt# 搜索关键字
less file.txt
# 输入 /keyword 并按 Enter 搜索
head (Display the beginning of a file)
# 查看文件的前 10 行
head file.txt# 查看文件的前 n 行
head -n 20 file.txt# 查看文件的前 n 字节
head -c 100 file.txt
tail (Display the end of a file)
# 查看文件的最后 10 行
tail file.txt# 查看文件的最后 n 行
tail -n 20 file.txt# 实时查看文件的变化(如日志文件)
tail -f file.txt
nl (Number lines of files)
# 显示文件内容并添加行号
nl file.txt
od (Dump files in octal and other formats)
# 以十六进制格式显示文件内容
od -x file.txt
wc (Word, line, character, and byte count)
# 统计文件的行数、单词数和字节数
wc file.txt# 仅统计文件的行数
wc -l file.txt# 仅统计文件的单词数
wc -w file.txt# 仅统计文件的字节数
wc -c file.txt
diff (Compare files line by line)
# 比较两个文件的不同
diff file1.txt file2.txt# 比较两个文件并以侧边显示差异
diff -y file1.txt file2.txt# 递归比较两个目录的不同
diff -r dir1/ dir2/

文件操作命令

cp (Copy files and directories)
# 复制文件
cp source.txt destination.txt# 复制多个文件到目录
cp file1.txt file2.txt directory/# 复制目录及其内容
cp -r source_directory/ destination_directory/
mv (Move or rename files and directories)
# 移动文件
mv source.txt /path/to/destination/# 重命名文件
mv oldname.txt newname.txt# 移动目录
mv source_directory/ /path/to/destination/
rm (Remove files and directories)
# 删除文件
rm file.txt# 强制删除文件
rm -f file.txt# 删除目录及其内容
rm -r directory/# 强制删除目录及其内容
rm -rf directory/
mkdir (Make directories)
# 创建目录
mkdir new_directory# 创建多级目录
mkdir -p parent_directory/child_directory
rmdir (Remove empty directories)
# 删除空目录
rmdir empty_directory# 递归删除空目录
rmdir -p parent_directory/child_directory
split (Split a file into pieces)
# 将文件按行分割,每个文件 1000 行
split -l 1000 largefile.txt smallfile_# 将文件按字节分割,每个文件 1MB
split -b 1M largefile.txt smallfile_
rename (Rename files)
# 将所有 .txt 文件的扩展名改为 .md
rename 's/\.txt$/\.md/' *.txt# 批量重命名文件
rename 's/file/newfile/' file*
shred (Securely delete files)
# 安全删除文件
shred -u file.txt# 重复覆盖 5 次
shred -n 5 file.txt

文件搜索命令

find (Search for files in a directory hierarchy)
# 按名称搜索文件
find /path/to/search -name "filename"# 按类型搜索(例如,查找所有目录)
find /path/to/search -type d# 按大小搜索(例如,查找大于 1MB 的文件)
find /path/to/search -size +1M# 按修改时间搜索(例如,查找最近一天修改的文件)
find /path/to/search -mtime -1# 按权限搜索(例如,查找权限为 755 的文件)
find /path/to/search -perm 755
locate (Find files by name using a pre-built database)
# 搜索文件
locate filename# 更新数据库(需要 root 权限)
sudo updatedb
grep (Search text using patterns)
# 在文件中搜索字符串
grep "search_string" file.txt# 递归搜索目录中的字符串
grep -r "search_string" /path/to/search# 显示行号
grep -n "search_string" file.txt# 搜索时忽略大小写
grep -i "search_string" file.txt# 仅显示匹配的文件名
grep -l "search_string" /path/to/search/*
which (Locate a command)
# 查找命令的路径
which ls
whereis (Locate the binary, source, and manual page files for a command)
# 查找命令的二进制文件、源代码和手册
whereis ls
type (Describe a command type)
# 查看命令类型
type ls

文件权限管理命令

chmod (Change file mode bits)
# 为文件添加执行权限
chmod +x script.sh# 设置文件的权限为 755
chmod 755 file.txt# 递归修改目录及其内容的权限
chmod -R 755 directory/
chown (Change file owner and group)
# 更改文件的所有者
chown new_owner file.txt# 更改文件的所有者和组
chown new_owner:new_group file.txt# 递归更改目录及其内容的所有者和组
chown -R new_owner:new_group directory/
chgrp (Change group ownership)
# 更改文件的组
chgrp new_group file.txt# 递归更改目录及其内容的组
chgrp -R new_group directory/
umask (Set file mode creation mask)
# 查看当前 umask 值
umask# 设置默认权限为 755
umask 022
setfaclgetfacl (Set and get file access control lists)
# 设置文件的 ACL 权限
setfacl -m u:username:rwx file.txt# 查看文件的 ACL 权限
getfacl file.txt

压缩与解压命令

tar (Archive files)
# 创建 tar 归档文件
tar -cvf archive.tar directory/# 解压 tar 归档文件
tar -xvf archive.tar# 创建 gz 压缩的 tar 归档文件
tar -czvf archive.tar.gz directory/# 解压 gz 压缩的 tar 归档文件
tar -xzvf archive.tar.gz# 创建 bz2 压缩的 tar 归档文件
tar -cjvf archive.tar.bz2 directory/# 解压 bz2 压缩的 tar 归档文件
tar -xjvf archive.tar.bz2
zipunzip (Compress and decompress zip files)
# 压缩文件到 zip
zip archive.zip file1 file2# 递归压缩目录
zip -r archive.zip directory/# 解压 zip 文件
unzip archive.zip
gzipgunzip (Compress and decompress gz files)
# 压缩文件
gzip file.txt# 解压文件
gunzip file.txt.gz# 显示压缩文件内容
zcat file.txt.gz
bzip2bunzip2 (Compress and decompress bz2 files)
# 压缩文件
bzip2 file.txt# 解压文件
bunzip2 file.txt.bz2
xzunxz (Compress and decompress xz files)
# 压缩文件
xz file.txt# 解压文件
unxz file.txt.xz
7z (Compress and decompress 7z files)
# 压缩文件到 7z
7z a archive.7z file.txt# 解压 7z 文件
7z x archive.7z

其他常用文件处理命令

file (Determine file type)
# 确定文件类型
file file.txt
basenamedirname (Extract file name and directory name)
# 提取文件名
basename /path/to/file.txt# 提取目录名
dirname /path/to/file.txt
xargs (Build and execute command lines from standard input)
# 删除所有 .txt 文件
ls *.txt | xargs rm# 查找所有 .log 文件并压缩
find . -name "*.log" | xargs tar -czvf logs.tar.gz
tee (Read from standard input and write to standard output and files)
# 将命令输出保存到文件同时显示在终端
echo "Hello, World!" | tee output.txt
tr (Translate or delete characters)
# 将文件内容中的小写字母转换为大写
cat file.txt | tr 'a-z' 'A-Z'# 删除文件内容中的所有数字
cat file.txt | tr -d '0-9'
sort (Sort lines of text files)
# 对文件内容进行排序
sort file.txt# 反向排序
sort -r file.txt# 按数字排序
sort -n file.txt
uniq (Report or omit repeated lines)
# 删除重复行
uniq file.txt# 仅显示重复行
uniq -d file.txt# 显示重复行的出现次数
uniq -c file.txt
cut (Remove sections from each line of files)
# 提取每行的前 10 个字符
cut -c 1-10 file.txt# 提取以逗号分隔的第二个字段
cut -d ',' -f 2 file.csv
paste (Merge lines of files)
# 将两个文件的内容按行合并
paste file1.txt file2.txt# 将多个文件的内容按列合并
paste -d ',' file1.txt file2.txt
awk (Pattern scanning and processing language)
# 打印文件中的第二列
awk '{print $2}' file.txt# 统计文件中的行数
awk 'END {print NR}' file.txt# 计算文件中第三列的总和
awk '{sum += $3} END {print sum}' file.txt
sed (Stream editor for filtering and transforming text)
# 替换文件中的字符串
sed 's/old_string/new_string/' file.txt# 删除文件中的空行
sed '/^$/d' file.txt# 打印文件中的特定行(例如第 2 到第 4 行)
sed -n '2,4p' file.txt
echoprintf (Display a line of text)
# 打印字符串
echo "Hello, World!"# 打印变量
name="Alice"
echo "Hello, $name!"# 使用 printf 打印格式化字符串
printf "Name: %s\nAge: %d\n" "Alice" 25

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/51272.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

写代码对人的影响

1 代码是需要跑起来的,不能你写了一段代码运行不了 2 代码过程中有大量的bug,经常异常报错,你需要花费时间去解决 对人的影响就是解决问题的态度得到强化,解决问题要比坚持正确困难,坚持正确只是需要自然而然的努力&…

淘宝NPM镜像地址已经改了,2022年以前发布的相关内容的博文已经没参考价值

http://npm.taobao.org和 http://registry.npm.taobao.org 已于2022.06.30正式下线和停止DNS解析 淘宝NPM镜像站的新域名为 http://npmmirror.com http://registry.npm.taobao.org > https://registry.npmmirror.com windows系统在命令行窗口下执行如下命令即可&#xff1a…

C++ primer plus 第16章string 类和标准模板库, 算法的通用特征

C primer plus 第16章string 类和标准模板库, 算法的通用特征 C primer plus 第16章string 类和标准模板库, 算法的通用特征 文章目录 C primer plus 第16章string 类和标准模板库, 算法的通用特征16.6.2 算法的通用特征 16.6.2 算法的通用特征 正如您多次看到的,…

掌握SQL Server的PowerShell魔法:自动化数据库管理的艺术

掌握SQL Server的PowerShell魔法:自动化数据库管理的艺术 SQL Server与PowerShell的结合为数据库管理员(DBA)提供了一种强大的自动化数据库管理工具。通过PowerShell,可以执行复杂的数据库任务,从简单的查询到复杂的数据迁移和备份策略的实现…

Python接口自动化测试框架(实战篇)-- 数据库操作MySQL

文章目录 一、前言二、数据库什么是数据验证为什么需要操作数据库做数据验证?现在回到怎样做数据验证的问题上来 三、[PyMSQL](https://pypi.org/project/pymssql/)pymysql如何操作数据库实际应用 四、总结 一、前言 说起数据库的操作,咱们应该保持一颗敬畏的心&a…

Ubuntu安装terminator教程

Terminator 是一个高级的终端仿真器,专为 Linux 和 Unix 系统设计。它的主要特点是提供了丰富的多窗口和多标签功能,使用户能够在一个窗口中管理多个终端会话。这对于系统管理员、开发人员以及需要同时运行多个命令行任务的用户来说,极为方便。 一、安装 1、更新包 sudo a…

【Python】计算游戏得分

一、题目 Kevin and Stuart want to play the The Minion Game. Game Rules Both players are given the san string S.Both players have to make substrings using the letters of the string S.Stuart has to make words starting with consonants.Kevin has to make wor…

Could not find a package configuration file provided by “catkin_simple“ 的参考解决方法

文章目录 写在前面一、问题描述二、解决方法参考链接 写在前面 自己的测试环境: Ubuntu20.04 ROS-Noetic 一、问题描述 CMake Error at /***/CMakeLists.txt:4 (find_package):By not providing "Findcatkin_simple.cmake" in CMAKE_MODULE_PATH thisp…

vue项目启动报错 vue与vue-template-compiler版本不一致

出现错误 Vue packages version mismatch: vue2.6.12 (/Users/work_ws/project/my/astar-education/astar-education-ui/node_modules/vue/dist/vue.runtime.common.js)vue-template-compiler2.6.13 (/Users/work_ws/project/my/astar-education/astar-education-ui/node_mod…

图中的最短环

2608. 图中的最短环 现有一个含 n 个顶点的 双向 图,每个顶点按从 0 到 n - 1 标记。图中的边由二维整数数组 edges 表示,其中 edges[i] [ui, vi] 表示顶点 ui 和 vi 之间存在一条边。每对顶点最多通过一条边连接,并且不存在与自身相连的顶…

Hive——UDF函数:高德地图API逆地理编码,实现离线解析经纬度转换省市区(离线地址库,非调用高德API)

文章目录 1. 需求背景数据现状业务需求面临技术问题寻求其他方案 2. 运行环境软件版本Maven依赖 3. 获取离线地址库4. Hive UDF函数实现5. 创建Hive UDF函数6. 参考 1. 需求背景 数据现状 目前业务系统某数据库表中记录了约3亿条用户行为数据,其中两列记录了用户触…

Java1.2标准之重要特性及用法实例(十三)

简介: CSDN博客专家,专注Android/Linux系统,分享多mic语音方案、音视频、编解码等技术,与大家一起成长! 新书发布:《Android系统多媒体进阶实战》🚀 优质专栏: Audio工程师进阶系列…

SciPy 与 MATLAB 数组

SciPy 与 MATLAB 数组 SciPy 是一个开源的 Python 库,广泛用于科学和工程计算。它构建在 NumPy 数组的基础之上,提供了许多高级科学计算功能。MATLAB 是一个高性能的数值计算环境,它也使用数组作为其基础数据结构。在这篇文章中,我们将探讨 SciPy 和 MATLAB 在数组操作上的…

征服 Docker 镜像访问限制:KubeSphere v3.4.1 成功部署全攻略

近期,KubeSphere 社区的讨论中频繁出现关于 Docker 官方镜像仓库访问受限的问题。 本文旨在为您提供一个详细的指南, 展示在 Docker 官方镜像访问受限的情况下,如何通过 KubeKey v3.1.2 一次性成功部署 KubeSphere v3.4.1 以及 Kubernetes …

深入剖析:GaussDB与MySQL在COUNT查询中的并行化技术

引言 数据库查询性能优化是数据库管理和开发中的一个重要议题。在处理大数据量的COUNT查询时,传统的单线程处理方式可能无法满足现代应用的性能需求。GaussDB(for MySQL)和MySQL作为流行的数据库系统,它们在并行查询优化方面有着各自的策略和技术。本文…

Python批量采集某东评论,实现可视化分析

女朋友没事就喜欢网购,买一大堆又不用,总说不合适,为了不让她花冤枉钱,于是我决定用Python写一个采集商品评论的脚本,然后对商品进行分析,这样就不怕踩到坑了! 让我们直接开始本次操作 准备工作…

Python及Jupyter-Notebook安装

来源: “码农不会写诗”公众号 链接:Python及Jupyter-Notebook安装 文章目录 01 Python安装1.1 下载安装包1.2 双击安装包,开始安装1.3 选择安装配置1.4 选择需要安装的Optional Feature,点击Next1.5 选择需要安装的Advanced Feat…

Apache DolphinScheduler Worker Task执行原理解析

大家好,我是蔡顺峰,是白鲸开源的高级数据工程师,同时也是Apache DolphinScheduler社区的committer和PMC member。今天我要分享的主题是《Worker Task执行原理》。 整个分享会分为三个章节: Apache DolphinScheduler的介绍Apache …

Python3网络爬虫开发实战(3)网页数据的解析提取

文章目录 一、XPath1. 选取节点2. 查找某个特定的节点或者包含某个指定的值的节点3. XPath 运算符4. 节点轴5. 利用 lxml 使用 XPath 二、CSS三、Beautiful Soup1. 信息提取2. 嵌套选择3. 关联选择4. 方法选择器5. css 选择器 四、PyQuery1. 初始化2. css 选择器3. 信息提取4. …