根据tr(1)手册的-C
意思是:
Complement the set of characters in string1, that is ``-C ab'' includes every character except for `a' and `b'.
..并且-c
意味着:
Same as -C but complement the set of values in string1.
现在,如果我-c
在上面的命令中使用,它会按我的预期工作:
$ echo $(dd if=/dev/urandom count=1 2>/dev/null | tr -dc 'A-Za-z0-9')
BAP0EctPYxpGgJmWYclqHj2eBWfZvVJs7nL6Y6YQiguGoZgziCceLe3TcyeV4uUi1R1yPW98s8LgiC8iNS1F60tEE2nXAHNi6L6IVS3CXBn94oPLGppxAgp
$
..但-C
没有:
$ echo $(dd if=/dev/urandom count=1 2>/dev/null | tr -dC 'A-Za-z0-9')
���hA����W���t�W��eu�C���W��o��A��xz�����M��p���x��2q����10O���������������p�R���t��I���c�8Z��Rq�9�L�Z��u����ot�n�T��n�nI��3i�yj�CuK��v�Ny�0�������i1�W�Lo�do�����TckL����i�rn��Wc��T���3����X��Z�M�e���I��J��I���A�5Y�����h���K���������ai������S����aZ�G���oab8��������4�g���G��g��0����I���H2�XGo���1�7���Ls�9H��7�b���Sf���E��Tv����mE�����3���l���S�88z��nl�p�f����w�E���Y�q�p���B�
$
set of characters
这个vs怎么理解set of values
?
答案1
在 POSIX 语言环境中,字符的值可以是 0 到 127。
tr -dc 'A-Za-z0-9'
将取 0 到 255 值中的补码。
tr -dC 'A-Za-z0-9'
将取有效字符集中的补码(因此值为 0 到 128)。
所以第一个就像:
tr -d '\0-\57\72-\100\133-\140\173-\377'
而第二个就像:
tr -d '\0-\57\72-\100\133-\140\173-\177'