talleres-bash/taller1/scripts/05.sh

6 lines
83 B
Bash
Raw Permalink Normal View History

2024-04-17 21:50:31 +02:00
#!/bin/bash
output1=$((2+2))
output2=$(($output1 - 2))
echo $output1
echo $output2