摘要: #!/bin/bash # 读取result.txt文件内容 while IFS= read -r line do if [[ $line == *"ORACLEDB"* ]]; then ORACLEDB_line="$line" # 保存ORACLEDB行 else # 提取POSTGRES行的 阅读全文
posted @ 2024-05-02 17:10 DBAGPT 阅读(4) 评论(0) 推荐(0) 编辑