在这种情况下,我依次使用tr命令3次:
tr -d [[:digit:]] | tr '[:upper:]' '[:lower:]' | tr -cd '[:alnum:]\nčšž'
是否可以在1 tr命令中组合3 tr命令? 或者有什么方法,如何更快地做到这一点?
答案 0 :(得分:2)
让我们假设你通过bash传递一个字符串:
# this is your starting code
f() { tr -d [[:digit:]] | tr '[:upper:]' '[:lower:]' | tr -cd '[:alnum:]\nčšž'; }
# defining a test variable
s='hello123WORLD456'$'\n''čšž'
f <<<"$s" # writes "helloworld", a newline, then "čšž"
...可以通过组合第一个和第三个来简单地改变,因为它们都执行相同的基本操作(删除给定集合中的所有字符 - 即使在两个案例之一中定义了集合以排他的方式):
# this behaves the same way
f() { tr '[:upper:]' '[:lower:]' | tr -cd '[:alpha:]\nčšž'; }
...但是,如果运行现代bash版本,您可以使用一对参数扩展执行相同的操作,而不会产生任何运行tr
的任何开销:
s_lowercase=${s,,}
s_alpha=${s_lowercase//[![:alpha:]čšž]/}
echo "$s_alpha"