txt
-
linux中如何统计文本字符的总个数
1、测试数据 [root@centos7 test3]# ls test.txt [root@centos7 test3]# cat test.txt deet dggh df…
-
Linux基本常用命令
cd :切换目录 绝对路径和相对路径 绝对路径 Linux中一切皆文件,一切的文件都在 /(根)目录下路径写法:由根目录写起 / 例如:/usr/local [root@LuoKi…
-
linux awk命令统计行数和列数
1、测试数据 [root@centos7 test4]# ls test.txt [root@centos7 test4]# cat test.txt d j k j x m …
-
linux中输出匹配行的行号
1、测试数据 [root@centos7 test4]# ls test.txt [root@centos7 test4]# cat test.txt e f j d i x …
-
Shell – for loop
2022-04-12 11:14PM [/home/zzh/aaa]$>lh total 8.0K -rw-rw-r– 1 zzh users 0 Apr 12 05:08…
-
Linux以日期格式保存文件
!/bin/bash touch date +%Y%m%d%k%M%S.txttouch date +%Y_%m_%d_%k_%M_%S.txttouch date +%YY_%m…
-
11.文件处理
文件处理 1. 文件系统的相关操作 什么是文件操作系统 文件操作系统只是PHP知识的一个完整的模块 所有文件进行操作都需要文件系统的相关操作函数 就是学习操作文件的相关函数 与文件…
-
linux之chmod命令
如上图: 开头为“-”表示文件,开头为“d”表示目录 红框中共有9个字符,前三个字符表示为User(用户)的权限,中间三个字符为Group(组)的权限,末尾三个表示Other…
-
linux之tar命令
tar命令中常见参数: -c, –create 创建一个新归档-x, –extract, –get 从归档中解出文件-f, –file=ARCHIVE 使用归档文件-z, …
-
linux 中输出匹配行的下一行
1、 [root@rhel7pc1 test]# ls a.txt [root@rhel7pc1 test]# cat a.txt 1 k d f 2 x c g 3 z c …