gpt4 book ai didi

linux - 从文件中读取值并将它们与另一个值进行比较的 Shell 脚本

转载 作者:太空宇宙 更新时间:2023-11-04 10:04:47 27 4
gpt4 key购买 nike

我需要一个 shell 脚本,我在其中读取一个数字并将该数字与另一个文件中的数字进行比较。这是一个例子:

我有一个名为 numbers.txt 的文件,其中包含以下内容:

name;type;value;description
samsung;s5;1500;blue
iphone;6;1000;silver

我读入了一个数字,例如 1200。它应该打印出文件中小于 1200 的值(在我的例子中它应该打印出 1000)

这是我开始写的代码,但我不知道如何完成它。

echo " Enter a number"
read num
if [ $numbersinthefile -le $num ]; then
echo "$numbersinthefile"

我希望我正确地定义了我的问题。有人可以帮助我吗?

最佳答案

使用:

#!/bin/bash

echo -n "Enter the number: "
read num

awk -F\; '$3 < '$num' {print $0;}' myfile

关于linux - 从文件中读取值并将它们与另一个值进行比较的 Shell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53297704/

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