develog

[Linux] shell script, 숫자 연산 본문

OS & Shell/Linux

[Linux] shell script, 숫자 연산

냐옴 2015. 1. 10. 15:16

#/bin/bash


a=10

b=20

c=$(($a+$b))

echo $c

Comments