mktar: Use `wc` instead of `du` in summary message
[sunny256-utils.git] / unicode_htmlchart
blob7b401f9a7acf2c99709a9acf5b458358d3a49aba
1 #!/usr/bin/env perl
3 # unicode_htmlchart
4 # File ID: 29d61fce-5d47-11df-9c4e-90e6ba3022ac
5 # Skriv ut en dunge med Unicode-entities. For browsertest.
7 use strict;
8 use warnings;
10 for ($ARGV[0]..$ARGV[1]) {
11 $_ % 32 || printf("<br>\n%04X ", $_);
12 print("&#$_;");
14 print("\n");