Posts by Bruno Souto • 63 points
1 post
-
6
votes1
answer92
viewsQ: What’s the " operator" on Bash?
i=1 aux=3 aux=$(($aux^$i)) echo $aux #2 Can someone explain me this code?
1 post
6
votes1
answer92
viewsi=1 aux=3 aux=$(($aux^$i)) echo $aux #2 Can someone explain me this code?