Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,690 questions

55,449 answers

573 users

How to use the ++ and -- operators in Bash

6 Answers

0 votes
i=12
 
((i++))
echo $i

((++i))
echo $i

let "i++"
echo $i

let "++i"
echo $i


   
 
   
   
# run:
#
# 13
# 14
# 15
# 16
#

 



answered May 26, 2021 by avibootz
0 votes
i=12
 
((i--))
echo $i

((--i))
echo $i

let "i--"
echo $i

let "--i"
echo $i


   
 
   
   
# run:
#
# 11
# 10
# 9
# 8
# 

 



answered May 26, 2021 by avibootz
0 votes
x=1
  
y=$((x++))
echo x: $x
echo y: $y
 
    
 
    
# run:
#
# x: 2
# y: 1
#

 



answered May 26, 2021 by avibootz
0 votes
x=1
 
y=$((++x))
echo x: $x
echo y: $y

   

   
# run:
#
# x: 2
# y: 2
#

 



answered May 26, 2021 by avibootz
0 votes
x=1
   
y=$((x--))
echo x: $x
echo y: $y
  
     
  
     
# run:
#
# x: 0
# y: 1
#

 



answered May 26, 2021 by avibootz
0 votes
x=1
  
y=$((--x))
echo x: $x
echo y: $y
 
    
 
    
# run:
#
# x: 0
# y: 0
#

 



answered May 26, 2021 by avibootz

Related questions

1 answer 286 views
1 answer 277 views
1 answer 233 views
233 views asked May 27, 2021 by avibootz
1 answer 240 views
240 views asked May 26, 2021 by avibootz
1 answer 338 views
338 views asked May 26, 2021 by avibootz
3 answers 352 views
352 views asked May 26, 2021 by avibootz
1 answer 267 views
...