talleres-bash/taller1/scripts/05.sh

6 lines
83 B
Bash
Executable File

#!/bin/bash
output1=$((2+2))
output2=$(($output1 - 2))
echo $output1
echo $output2