value=100

value2=100


value=$((value+1))

value=$((value+value2))

value=$((value=value+1))

value=$((value+=1))

value=$((value++))


let "value=value+1"

let "value=value+value2"

let "value+=1"

let "value++"


ref. https://askubuntu.com/questions/385528/how-to-increment-a-variable-in-bash


참 신기하다...


'20. Programming > Tools - Bash Shell' 카테고리의 다른 글

[bash shell] 중단하기  (0) 2018.11.12
[bash shell] 주석  (0) 2018.11.12
[bash shell] for ... in 문  (0) 2018.11.12
[bash shell] echo 에 color 넣기 - 미완  (0) 2018.11.12



중단하기 - exit

RED='\033[0;31m'

NC='\033[0m' # No Color


# Removing Directories

echo -e "${NC}"

echo -e "${NC}--------------------------------------"

echo -e "${RED}| # Removing Directories             |"

echo -e "${NC}--------------------------------------"


exit

# Disk Usage
echo -e "${NC}"
echo -e "${NC}--------------------------------------"
echo -e "${RED}| # Disk Usage                       |"
echo -e "${NC}--------------------------------------"







'20. Programming > Tools - Bash Shell' 카테고리의 다른 글

[bash shell] 값 증가  (0) 2018.11.12
[bash shell] 주석  (0) 2018.11.12
[bash shell] for ... in 문  (0) 2018.11.12
[bash shell] echo 에 color 넣기 - 미완  (0) 2018.11.12



한 줄 주석 : # 을 사용

# Removing Directories



여러 줄 주석 : : ' ' 을 사용

: '     <= 공백 있음을 유의

echo -e "${NC}"

echo -e "${NC}--------------------------------------"

echo -e "${RED}| # Removing Directories             |"

echo -e "${NC}--------------------------------------"

'




주석에 Naming 하기 : : << '주석이름'            ....................         주석이름

: <<'end_long_comment'

echo -e "${NC}"

echo -e "${NC}--------------------------------------"

echo -e "${RED}| # Removing Directories             |"

echo -e "${NC}--------------------------------------"

end_long_comment



'20. Programming > Tools - Bash Shell' 카테고리의 다른 글

[bash shell] 값 증가  (0) 2018.11.12
[bash shell] 중단하기  (0) 2018.11.12
[bash shell] for ... in 문  (0) 2018.11.12
[bash shell] echo 에 color 넣기 - 미완  (0) 2018.11.12

+ Recent posts