6 lines
55 B
Bash
Executable File
6 lines
55 B
Bash
Executable File
#!/bin/bash
|
|
x=15
|
|
y=20
|
|
z=$(($x-$y))
|
|
echo "$x - $y = $z"
|