如何在 shell 脚本中使用 C 程序转换温度?

如何在 shell 脚本中使用 C 程序转换温度?

这是格式化的 C 程序,名为 fahr_kel:


 #include <stdio.h>
 #include <stdlib.h>
 #include <iostream>
 #include <string>
 #include <vector>

 int main( int argc, char *argv[] )
 {
    if (argc < 3) 
 {
  std::cerr << "Usage:" << argv[0] << " arg1 arg2 \n"
  << "arg1 is the conversion type (1 or 2) \n "
  << "arg 2 is the temp to be converted" << std::endl;
  return 1;
 }
 // Assign the variables used in this program
 int temp, conv_temp, conv_type;

 // assign the input options to variables
 conv_type=atoi(argv[1]);
 temp=atoi(argv[2]);

 // convert the temps..
 // if the input number is 1, convert from Kelvin to Fahrenheit
 // if the input number is anything else, convert from Fahrenheit to Kelvin
 if (conv_type == 1)
 conv_temp = (((temp - 273) * 1.8) + 32);
 else  
 conv_temp = (((( temp - 32 ) * 5 ) / 9 ) + 273 );

 // print the data 
 printf ("       %3.1i                  %3.1i\n",temp,conv_temp);

 // end of main function 
 return 0;
 }

我需要根据 bash 脚本中的用户输入来操作该程序。


这是我需要通过名为project3.data的C程序传递的数据文件:

 0
 32
 100
 212
 108
 1243
 3000
 85
 22
 2388
 235

这是我启动的名为project3.bash 的脚本。

 #!/bin/bash
 echo -n "Convert from  kelvin to fahrenheit(1) or fahreinheit to kelvin(2)"

 read choice 

 /home/username/project3/fahr_kel [ choice project3.data ]

我只得到脚本输出的第一行。 0 和 256

输出需要如下所示:

 ---------------------- -----------------------
 Fahrenheit Temperature Kelvin Temperature
 --------------------- -----------------------
           0                  256
 ---------------------  -----------------------
           32                 273
 ---------------------- -----------------------
          100                 310
 ---------------------- -----------------------
          212                 373
 ---------------------- -----------------------
          108                 315
 ---------------------- -----------------------
          1243                945
 ---------------------- -----------------------
          3000                1921
 ---------------------- -----------------------
           85                  302
 ---------------------- -----------------------
           22                  268
 ---------------------- -----------------------
          2388                 1581
 ---------------------- -----------------------
          235                   385
 ---------------------- -----------------------

答案1

您的 C++ 程序根据需要转换温度,并期望温度值作为第二个输入参数。但是,您的 bash 脚本不会将温度作为输入参数传递。相反,它使用以下命令调用 C++ 程序数据文件名作为输入参数。这是不希望的。您应该使用输入值本身作为参数来调用 C++ 程序;即您需要按如下方式修改bash脚本。

bash 脚本中必要的修复是为每个数据行调用一次 c 函数,并添加必要的格式。我在下面展示了这一点。

#!/bin/bash

inputFile="project3.data"

echo -n "Convert from  kelvin to fahrenheit(1) or fahreinheit to kelvin(2)"

read choice 
# run the following per input data line
#./fahr_kel [ choice project3.data ]
cmd="./fahr_kel $choice "

# print header
linePrint="------------------  ----------------"
echo $linePrint
echo "Fahrenheit Temperature Kelvin Temperature"
echo $linePrint

while read inputVal
do
      $cmd $inputVal
      echo $linePrint
done < "$inputFile"
echo $linePrint

另一种方法是更改​​ C++ 程序以期望文件输入而不是温度输入。

相关内容