#!/bin/bash
echo "Please enter a number that can divided by 5"
read input
ans= 'expr $input/5'
echo "$ans"
所以我希望这个代码是这样的,用户将输入一个可以除以5(5,10,15,20等等)的数字然后它会回应答案,我不知道什么是错的我的代码一直说“没有这样的文件或目录”输出不知道如何修复它。
答案 0 :(得分:3)
我认为空间是你的问题......
#!/bin/bash
echo "Please enter a number that can divided by 5"
read input
ans=`expr $input / 5`
echo "$ans"