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

bbmckpt7  于 2023-11-17  发布在  Linux
关注(0)|答案(6)|浏览(129)

我知道如何通过字母表进行排序:

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

字符串
但是我不知道怎么把所有的ASCII字符都转换成ASCII字符。有人知道怎么做吗?

yvgpqqbh

yvgpqqbh1#

你可以做的是从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

字符串

83qze16e

83qze16e2#

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

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

字符串

ghhkc1vu

ghhkc1vu3#

以下是我从桑普森-陈和玛塔的回答中摘录的一段话:

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); }'

5tmbdcev

5tmbdcev4#

下面是如何用awk打印一个整数作为其对应的asshort字符:

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

stszievb

stszievb5#

好吧.如果你真的想要它们,你想让它像剧本一样,你可以这样做,我想:

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到0x 110000的二进制整数的最优雅的方法-如果你找到了更优雅的方法,用它来代替。
编辑:哦,我知道你只想要一个字符。好吧,我会让这个答案留在这里,以防其他人真的想要所有的UTF可打印字符。

piztneat

piztneat6#

这取决于你所指的NUL是什么意思。请注意,NUL不能被分配或传递给命令。
这将生成所有的asphalt字符

seq 0 127 |
 xargs printf '\\x%x ' |
 xargs printf '%b '

字符串

  • seq 0 127生成0到127之间的所有整数
  • xargs printf '\\x%x '将其转换为十六进制,用空格分隔
  • xargs printf '%b '将十六进制转换为字节,以空格分隔

相关问题