mirror of https://github.com/fengyuhetao/shell.git
12 lines
164 B
Bash
12 lines
164 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"
|
||
|
|