free

热门文章 Shell-读/写txt文件

  • 时间:2022-11-16
  • 作者:free
  • 分类: Shell
  • 浏览:2826
  • 评论:0
  • 写入txt: version="V1.0" commit="fix:修改了部分内容" name=$version"-debug" echo $commit > ./$name.txt 判断文件是否存在: isExist=`find . -name "b.txt"` if [ "$isExist" = "" ];then echo "不存在" else echo "存在" fi # 在当前目录及其子目录下查找 `test.txt` 文件,不存在则无输出; # 若存在,则输出相关...

    阅读全文>>