bash shell 자체는 integer arithmetic 만 지원. bc 를 이용해야함
example)
LINK_UTIL=`printf "%.10f\n" $(bc -l <<< "scale=10; ${A}/${B}") `
WRITTEN BY
- RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.
,
bash shell 자체는 integer arithmetic 만 지원. bc 를 이용해야함
example)
LINK_UTIL=`printf "%.10f\n" $(bc -l <<< "scale=10; ${A}/${B}") `