1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
# This file is part of the Detox package.
#
# Copyright (c) Doug Harple <detox.dharple@gmail.com>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#
# This file replaces 7-bit characters that are special to shells with "_" or
# "-". The exception is ampersand, which gets translated to "_and_".
#
# The absence of a "default" option means that if a character is not specified
# here, it will not be altered.
#
start
#
# Control characters to translate to _
#
# Descriptions pulled from ascii(7)
#
0x01 _ # SOH (start of heading)
0x02 _ # STX (start of text)
0x03 _ # ETX (end of text)
0x04 _ # EOT (end of transmission)
0x05 _ # ENQ (enquiry)
0x06 _ # ACK (acknowledge)
0x07 _ # BEL '\a' (bell)
0x08 _ # BS '\b' (backspace)
0x09 _ # HT '\t' (horizontal tab)
0x0a _ # LF '\n' (new line)
0x0b _ # VT '\v' (vertical tab)
0x0c _ # FF '\f' (form feed)
0x0d _ # CR '\r' (carriage ret)
0x0e _ # SO (shift out)
0x0f _ # SI (shift in)
0x10 _ # DLE (data link escape)
0x11 _ # DC1 (device control 1)
0x12 _ # DC2 (device control 2)
0x13 _ # DC3 (device control 3)
0x14 _ # DC4 (device control 4)
0x15 _ # NAK (negative ack.)
0x16 _ # SYN (synchronous idle)
0x17 _ # ETB (end of trans. blk)
0x18 _ # CAN (cancel)
0x19 _ # EM (end of medium)
0x1a _ # SUB (substitute)
0x1b _ # ESC (escape)
0x1c _ # FS (file separator)
0x1d _ # GS (group separator)
0x1e _ # RS (record separator)
0x1f _ # US (unit separator)
0x7f _ # DEL
#
# Chars to translate to _
#
0x20 _ # space
0x21 _ # !
0x22 _ # "
0x24 _ # $
0x27 _ # '
0x2a _ # *
0x2f _ # /
0x3a _ # :
0x3b _ # ;
0x3c _ # <
0x3e _ # >
0x3f _ # ?
0x40 _ # @
0x5c _ # \
0x60 _ # `
0x7c _ # |
#
# Chars to translate to -
#
0x28 - # (
0x29 - # )
0x5b - # [
0x5d - # ]
0x7b - # {
0x7d - # }
#
# Other
#
0x26 _and_ # &
end
|