(export LC_ALL=C; xxd -revert -plain <<< 1234abcd | rev | tr -d '\n' | xxd -plain | tr -d '\n')
rev: stdin: Invalid or incomplete multibyte or wide character它的最大回报cdab3412
但回报
rev: stdin: Invalid or incomplete multibyte or wide character怎么解决这个问题?
发布于 2020-07-16 19:52:47
echo 1234abcd | grep -o .. | tac | paste -sd '' -
cdab3412https://unix.stackexchange.com/questions/598884
复制相似问题