如何遍历Bash中的所有ASCII字符?

时间:2012-10-29 18:58:56

标签: linux bash ascii

我知道如何迭代字母表:

for c in {a..z}; do ...; done

但我无法弄清楚如何遍历所有ASCII字符。有谁知道怎么做?

5 个答案:

答案 0 :(得分:7)

您可以做的是从0迭代到127,然后将十进制值转换为其ASCII值(或返回)。

您可以使用these函数执行此操作:

# POSIX
# chr() - converts decimal value to its ASCII character representation
# ord() - converts ASCII character to its decimal value

chr() {
  [ ${1} -lt 256 ] || return 1
  printf \\$(printf '%03o' $1)
}

# Another version doing the octal conversion with arithmetic
# faster as it avoids a subshell
chr () {
  [ ${1} -lt 256 ] || return 1
  printf \\$(($1/64*100+$1%64/8*10+$1%8))
}

# Another version using a temporary variable to avoid subshell.
# This one requires bash 3.1.
chr() {
  local tmp
  [ ${1} -lt 256 ] || return 1
  printf -v tmp '%03o' "$1"
  printf \\"$tmp"
}

ord() {
  LC_CTYPE=C printf '%d' "'$1"
}

# hex() - converts ASCII character to a hexadecimal value
# unhex() - converts a hexadecimal value to an ASCII character

hex() {
   LC_CTYPE=C printf '%x' "'$1"
}

unhex() {
   printf \\x"$1"
}

# examples:

chr $(ord A)    # -> A
ord $(chr 65)   # -> 65

答案 1 :(得分:5)

仅使用echo八进制转义序列的可能性:

for n in {0..7}{0..7}{0..7}; do echo -ne "\\0$n"; done

答案 2 :(得分:3)

以下是使用awk打印整数作为对应的ascii字符的方法:

echo "65" | awk '{ printf("%c", $0); }'

将打印:

A

以下是您可以通过这种方式迭代大写字母:

# ascii for A starts at 65:
ascii=65
index=1
total=26
while [[ $total -ge $index ]]
do
    letter=$(echo "$ascii" | awk '{ printf("%c", $0); }')
    echo "The $index'th letter is $letter"

    # Increment the index counter as well as the ascii counter
    index=$((index+1))
    ascii=$((ascii+1))
done

答案 3 :(得分:3)

以下是我提出的一个单行代表从sampson-chen和mata的答案中得到的一些内容:

for n in {0..127}; do awk '{ printf("%c", $0); }' <<< $n; done

或者:

for n in {0..127}; do echo $n; done | awk '{ printf("%c", $0); }'

答案 4 :(得分:2)

嗯......如果你真的想要它们,并且你希望它像脚本一样,你可以这样做,我猜:

awk 'function utf32(i) {printf("%c%c%c%c",i%0x100,i/0x100%0x100,i/0x10000%0x100,i/0x1000000) } BEGIN{for(i=0;i<0x110000;i++){utf32(i);utf32(0xa)}}' | iconv --from-code=utf32 --to-code=utf8 | grep -a '[[:print:]]'

但是这个清单非常庞大,并不是很有用。 awk可能不是生成从0到0x110000的二进制整数的最优雅方式 - 如果找到它,则替换更优雅的东西。

编辑:哦,我看到你只想要ascii。好吧,我会让这个答案留在这里以防其他人真正想要所有UTF可打印字符。