mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-15 22:05:24 -05:00
9 lines
252 B
Bash
9 lines
252 B
Bash
|
|
#!/usr/bin/sh
|
||
|
|
|
||
|
|
cut - -d ";" -f 1,6 |
|
||
|
|
grep ";[0-9,A-F]" | grep " " |
|
||
|
|
sed -e "s/ /, 0x/;s/^/{ 0x/;s/;/, 0x/;s/$/},/" |
|
||
|
|
sed -e "s,0x\(....\)\([^0-9A-Fa-f]\),0x0\1\2,g" |
|
||
|
|
(sort -k 3 || sort +2) |
|
||
|
|
sed -e "s,0x0\(...[0-9A-Fa-f]\),0x\1,g"
|