链接命令
该 | 获取左命令的输出并将其作为输入管道输出正确的命令。请注意,这是在子 shell 中完成的。因此,你无法通过管道设置调用进程的变量值。
find . -type f -a -iname '*.mp3' | \
while read filename; do
mute --noise "$filename"
done
该 | 获取左命令的输出并将其作为输入管道输出正确的命令。请注意,这是在子 shell 中完成的。因此,你无法通过管道设置调用进程的变量值。
find . -type f -a -iname '*.mp3' | \
while read filename; do
mute --noise "$filename"
done