basic
dd
1 | dd if=<input> of=<output> [options] |
• if: Specifies the input file or device (e.g., /dev/sda or /path/to/file).
• of: Specifies the output file or device (e.g., /dev/sdb or /path/to/file).
• bs=SIZE: Block size, defining how much data to read and write at a time. It can be set to values like 512, 4M, etc. Example: bs=1M reads and writes 1 megabyte at a time.
• count=N: Limits the number of blocks copied. For example, count=100 copies 100 blocks of the size specified by bs.
• status=progress: Shows real-time progress while copying.
• conv=notrunc: Prevents truncation of the output file (useful when appending).
• conv=sync: Pads the input to the full block size with null bytes if necessary.
1 | Copy specify file to specify path |
grep
- 去除包含特定字符串的行:
1 | grep -v "pattern" inputfile > outputfile |
参数 -v
是用来反向匹配的选项,它会将不匹配指定模式的行输出
- 查找指定目录下的文件内容
1 | grep -rn "info" * |
- 查询大文件里面的内容
格式:
1 | // 使用管道符可以实现过滤既满足时间又满足ip的行。 |
参数解释:
-n 参数的作用是显示查找结果的所在行号
-e 参数表示我们需要搜索的关键字,多个关键字就用多个 -e 参数
prometheus.log 表示待搜索的大日志文件
head -n 3 表示显示前面查询结果的前三条记录
- 排除指定内容
要仅打印与搜索模式不匹配的行,可以使用grep的-v
或--invert-match
选项。进行反转的匹配。
1 | grep -v xxx |
delete
1. To delete all files in a directory except filename, type the command below:
1 | rm -v !("filename") |
2. To delete all files with the exception of filename1 and filename2:
1 | rm -v !("filename1"|"filename2") |
3. The example below shows how to remove all files other than all .zip
files interactively:
1 | rm -i !(*.zip) |
4. Next, you can delete all files in a directory apart from all .zip
and .odt
files as follows, while displaying what is being done:
1 | rm -v !(*.zip|*.odt) |
5. 删除指定目录下指定日期的目录,可以使用 find
和 rm
命令来删除指定目录下指定日期的目录
1 | find /path/to/directory -type d -mtime +365 -exec rm -rf {} \; |
6. 删除指定目录下前一个星期的文件,可以使用 find
和 rm
命令来删除指定目录下指定日期的文件
1 | find /path/to/directory -type f -mtime +7 -exec rm {} \; |
or
1 | find /path/to/directory -type f -mtime +7 -delete |
可指定相关名称
1
find /var/log -name "*.log" -type f -mtime +30
AWK
awk -v FS="输入分隔符" -v OFS='输出分隔符' '{if($1==$5) print $1,$5,$10}' filename
查找filename文件(文件中列的分隔符为“输入分隔符”)中,每一行第一列和第五列相等的行,并输出第一列、第五列、第十列,切输出字段分隔符为“输出分隔符”。如果不配置FS和OFS,那么输入输出分隔符均默认为空
exclude a column with awk, 比如打印除第5列的其它所有列
awk ‘{ $5=””; print }’ file
wc
- 语法
1 | 语法:wc [选项] 文件… |
权限
使文件可以直接执行的命令:chmod +x filename
使所有用户对目录都有读写权限:sudo chmod ugo+rw /opt
1 | r=4,w=2,x=1 |
senario
文件分割
1 | split [-a] [-b] [-C] [-l] [要分割的文件名] [分割后的文件名前缀] |
将多个分割的文件进行合并
1 | cat files_name_1 files_name_2 files_name_3 > files_name |
按行数分割
1
split -l 10000 bigfile.txt smallfile
分割之后的文件不影响读取
统计某个文件中的字符数,需要注意的是,如果文件中包含多字节字符(如中文),则每个字符将被视为多个字符来计算。
1
wc -c /path/to/file
在这基础上,统计内容所占KB
1
wc -c /path/to/file | awk '{print $1/1024}'
awk对文件按照指定多列的内容进行排序
1
awk '{print $0}' head_100.csv | sort -t ',' -k2,3 > head_100_sort.csv
并用
sort
命令根据指定列的内容进行排序。-t
选项表示使用制表符作为字段分隔符,[列数]
是你要排序的那一列,“-k1,2”表示先按照第1列排序,若第1列相同则按照第2列排序。统计字符的长度
1
echo 字符 | wc -m
markdown
- markdown文件转word文件
1
pandoc -o output.docx -f markdown -t docx filename.md
find
- 查找具体文件
1 | find / -name 文件名称 |
- 查找指定用户的文件
1 | find ./* -user 用户名 |
- 查找指定用户组的文件
1 | find ./* -group 用户组 |
匹配查找除了某个特定文件类型以外的所有文件,并将结果传递给
rm
命令进行删除1
find . ! -name "*.txt" -delete
匹配多个
1
find . ! \( -name "log4j*" -o -name "flink*" \)
ls
ls -lh
以可读性G、M查看文件的大小
格式化json
1 | echo '{"kind": "Service", "apiVersion": "v1", "status": {"loadBalancer": true}}'|jq . |
SED
替换字符
linux环境:
1
sed -i 's/Search_String/Replacement_String/g' Input_File
mac环境(需要设置备份,以防文件损坏)
1
sed -i .bak 's/Search_String/Replacement_String/g' Input_File
删除指定多行
1
sed -i '1,5d' example.txt
转换文件编码格式
- 查看编码
首先我们来看看在 Linux 系统中如何查看文件的编码格式,可以在 vim 中使用如下命令查看:
1 | :set fileencoding |
输出可能是这样
1 | fileencoding=utf-81 |
也可以使用 file
和 identify
命令查看。
- 转换编码
然后使用 iconv
进行编码格式的转换,比如将一个 utf-8 编码的文件转换成 GBK 编码,命令如下:
1 | iconv -f UTF-8 -t GBK input.file -o output.file |
- 如果遇到]iconv: 未知xxxx处的非法输入序列,一种解决方法是加入 -c选项:忽略无效字符
1
iconv -c -f gb2312 -t utf8 test.txt -o output.file
1 | iconv -f gb18030 -t UTF-8 input.file -o output.file |
tar
c – Creates a new .tar archive file.
x — to untar or extract a tar file
v – Verbosely show the .tar file progress.
f – File name type of the archive file.
z — gzip archive file
j — bz2 feature compress and create archive file
t — to list the contents of tar archive file
加密
用zip命令对文件加密压缩和解压
1 | zip -re filename.zip filename |
批量替换文件名
1 | rename -n -e 's/待替换字符串/替换字符串/' *.png |
wget
- 下载指定目录
1 | wget -r --no-parent http://abc.tamu.edu/projects/tzivi/repository/revisions/2/raw/tzivi/ |
软连接
创建软连接
1
ln -s [源文件或目录] [目标文件或目录]
查找指定目录的软连接文件
1
ls -alR | grep ^l
sort
1 | sort --parallel=8 -S 4G -T /data -k2,3 largefile.txt > sorted_file.txt |
使用了8个线程并行排序,并且sort命令在排序过程中最多使用4GB的内存缓冲区。我们还使用了
-T /data
选项,指定sort命令使用/data目录来存储临时文件,而不是默认路径。“-k1,2”表示先按照第1列排序,若第1列相同则按照第2列排序。
编码
Base64
解码
echo [base64-encoded-string] | base64 --decode
编码
echo "your string" | base64