gpt4 book ai didi

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

转载 作者:IT王子 更新时间:2023-10-29 00:38:52 26 4
gpt4 key购买 nike

我知道如何遍历字母表:

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

但我不知道如何遍历所有 ASCII 字符。有谁知道吗?

最佳答案

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

关于linux - 如何遍历 Bash 中的所有 ASCII 字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13127950/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com