6 lines
99 B
Bash
6 lines
99 B
Bash
|
#!/bin/sh
|
||
|
cat /dev/random \
|
||
|
| base32 \
|
||
|
| head -c8 \
|
||
|
| jq -cR '{id: ., title: "Hello"}'
|