11 lines
123 B
Bash
11 lines
123 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
printf "==== %s ( %s ) ===\n" $0 $1
|
||
|
|
||
|
VALUE=$(( $RANDOM % 4096 ))
|
||
|
|
||
|
printf "random value = %03xH\n" ${VALUE}
|
||
|
|
||
|
|
||
|
|