标签: bash
这有效:
cat f.txt 2>&1
但这不是:
c="cat f.txt 2>&1" && `$c` cat: '2>&1': No such file or directory
为什么?