摘要: 从一个文件里读取出每一行,并解析每一行 #!/bin/bash callstack_file=${1} cat ${callstack_file} | while read line do entry=`echo ${line} | grep entry -w` if [ -n "${entry}" 阅读全文
posted @ 2022-06-13 21:53 aspirs 阅读(42) 评论(0) 推荐(0) 编辑