To be a better coder
分类: LINUX
2020-10-29 19:48:58
linux@host~# cat file.txt // 里面没有内容 linux@host~# touch file.txt // 新建一个空文件 linux@host~# cat file.txt // 里面没有内容 linux@host~# sed -i "\$a $var" file.txt // 往文件里面添加变量中的数据 linux@host~# cat file.txt // 但文件里面还是没有内容 linux@host~#
# var变量中的内容 $ var='append new context' # 新建一个空文件 $ touch file.txt # 文件内容为空 $ cat file.txt $ # 判断文件是否为空,空则使用echo命令添加,非空则使用sed命令 $ test -s file.txt && sed -i "\$a $var" file.txt || echo "$var" >> file.txt $ cat file.txt append new context
linux@host~# cat file.txt This is line 1. This is line 2. linux@host~# test -s file.txt && sed -i "\$a $var" file.txt || echo "$var" >> file.txt linux@host~# cat file.txt This is line 1. This is line 2. append new context