在Linux中,可以使用shell腳本來計算兩個數的和。可以創建一個包含計算邏輯的腳本文件,然后在命令行中執行該腳本來得到結果。
以下是一個簡單的shell腳本示例,可以計算兩個數的和:
#!/bin/bash
# 輸入要計算的兩個數
echo "Enter the first number:"
read num1
echo "Enter the second number:"
read num2
# 計算兩個數的和
sum=$(($num1 + $num2))
# 輸出結果
echo "The sum of $num1 and $num2 is: $sum"
將上述代碼保存為一個.sh文件,然后在命令行中執行該腳本文件,即可得到輸入的兩個數的和。