gpt4 book ai didi

bash - 使用满足条件的变量在 bash 脚本中创建一个子集

转载 作者:行者123 更新时间:2023-12-04 18:32:55 24 4
gpt4 key购买 nike

我正在处理以下数据集(可以在下面找到一个示例),我想创建一个 bash 脚本,它允许我只选择满足一组条件的记录,并且满足这些条件的所有记录都收集在另一个文件中。

1.Third column must be greater than 3
2.Fouth column must be grater than 3.5
3.Second column must be 8
40462186,177827,7671,4395,190,4.31,0.42
2872296,273870,3492,95349,1216,1.27,9.41
45236699,265691,6874,5873,152,2.58,0.57
77481,40024,153,516565,1975,0.38,51.54
如果您能帮助我完成它,我将不胜感激。
先感谢您

最佳答案

  • 您不能在 bash 变量名中包含空格。
  • 你拼错了 PercentagePercentatge .
  • 您误判了 Continent 的列位置.
  • bash 中的正则表达式运算符是 =~ ,而不是 ~ .
  • 您不应该用斜杠将正则表达式括起来。
  • 您需要使用 bc或其他用于算术的外部命令
    十进制数的计算。

  • 那么请您尝试以下方法:
    #!/bin/bash

    while read -r line; do
    if (( nr++ == 0 )); then # header line
    echo "$line,diff.porc.pts"
    else # body
    IFS=, read _ _ _ _ Continent _ _ _ _ pDeath pSurvival <<< "$line"
    if [[ $Continent =~ ^(Africa|Asia|Europe)$ && $pDeath =~ ^(0\.[5-9]|[1-9]) && $pSurvival =~ ^([2-9]\.|[1-9][0-9]) ]]; then
    diff=$(echo "$pSurvival - $pDeath" | bc)
    echo "$line,$diff"
    fi
    fi
    done < input_file.txt > new_file.txt
    输出:
    Country,Other names,ISO 3166-1 alpha-3 CODE,Population,Continent,Total Cases,Total Deaths,Tot Cases//1M pop,Tot Deaths/1M pop,Death percentage, Survival Percentage,diff.porc.pts
    Albania,Albania,ALB,2872296,Europe,273870,3492,95349,1216,1.27,9.41,8.14
    看起来是 Albania的记录只满足相反的条件
    显示的所需输出。

    关于bash - 使用满足条件的变量在 bash 脚本中创建一个子集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72329258/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com