tr大小写转换

$ echo "HELLOWorld" | tr '[:upper:]''[:lower:]'
tr: The combination of options and String parameters is not legal.
Usage: tr [ -c | -cds | -cs | -ds | -s ] [-A] String1 String2
       tr [ -cd | -cs | -d | -s ] [-A] String1

是因为''之间还需要一个空格

$  echo "HELLOWorld" | tr '[:upper:]' '[:lower:]'
helloworld


你可能感兴趣的:(shell,tr)