mirror of
https://github.com/Dannecron/netology-devops.git
synced 2025-12-25 23:32:37 +03:00
9 lines
86 B
Bash
Executable File
9 lines
86 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
a=1
|
|
b=2
|
|
c=a+b
|
|
d=$a+$b
|
|
e=$(($a+$b))
|
|
|
|
echo a=$a b=$b c=$c d=$d e=$e |