linux-tutorial/codes/shell/示例脚本/脚本函数/使用函数输出.sh
2019-10-10 08:56:31 +08:00

13 lines
173 B
Bash

#!/bin/bash
# using the echo to return a value
function db1 {
read -p "Enter a value:" value
echo $[ $value * 2 ]
}
result=`db1`
echo "The new value is $result"