7 lines
139 B
Bash
Executable File
7 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
read -p 'Start Value: ' startval
|
|
read -p 'End Value: ' endval
|
|
let growthrate=(($endval-$startval)/$startval)
|
|
echo $growthrate
|
|
|