summaryrefslogtreecommitdiff
path: root/free-bytecodes.sh
blob: ef23c301d9ad69fbf2e78ec2851b5e9a7b71e2d0 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
#

diff -U0 \
<(
  for i in `seq 0 255`; do
    printf "0x%02x\\n" $i
  done
) \
<(sed -n '/^ *$/d; s/#define [A-Z0-9_]* *//; p' in | sort | uniq)