老師你用的是那個版本xshell,我在xshell中設置的是unicode-utf8 但是df -h顯示的仍是英文啊 木有中文啊
2016-08-22
下面的程序有錯誤吧!
奔跑的蠻牛
#!/bin/bash
num1=$1
opt=$2
num2=$3
res=$((num1 opt num2))
echo $res
即可實現+ - / *計算器
奔跑的蠻牛
#!/bin/bash
num1=$1
opt=$2
num2=$3
res=$((num1 opt num2))
echo $res
即可實現+ - / *計算器
2016-08-10