老师你用的是那个版本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