Is something like the following code possible within a shell script?
var1=0xA (0b1010)
if ( (var1 & 0x3) == 0x2 ){
...perform action...
}
Just to make my intentions 100% clear my desired action would be to check bits of var1 at 0x3 (0b0011) and make sure that it equals 0x2 (0b0010)
0b1010
&0b0011
_______
0b0010 == 0x2 (0b0010)