diff options
Diffstat (limited to 'Symbols/sym.pl')
-rw-r--r-- | Symbols/sym.pl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Symbols/sym.pl b/Symbols/sym.pl new file mode 100644 index 0000000..11d3395 --- /dev/null +++ b/Symbols/sym.pl @@ -0,0 +1,11 @@ + +while(<>) { + for(split('')) { + $n = ord($_); + if ($n & 0x80) { + printf("\\%.3o", $n); + } else { + print $_; + } + } +} |