8 lines
56 B
Plaintext
8 lines
56 B
Plaintext
|
#!/bin/bash
|
||
|
let x=0x3f
|
||
|
echo $x
|
||
|
|
||
|
|
||
|
let x=0xfffe
|
||
|
echo $x
|