0
#!/bin/bash
# This is a comment
clear
echo "----------------------------------------"
read -p "please enter the first number" a
read -p "please enter the second number" b
sum = $(($a + $b))
sub = $(($a - $b))
echo "$a + $b = $sum"
echo "$a -$b = $sub"
echo "------------------------------------------"
這是我的shell腳本(test3.sh), 當我使用除了沒有在我的shell腳本工作
bash test3.sh
我收到以下錯誤 error
是的,我試過了。這是說等待10分鐘 – Bhargav
謝謝:)。我是堆棧溢出新手。所以我不熟悉。 – Bhargav