Raghunath Choudhary Asked: 2017-11-29 02:42:33 +0800 CST 在循环中使用 sed 时出现错误 - sed:no input files 1 我sed在 while 循环中使用从包含文件列表的文件中删除尾随空格。正在删除空格。但我收到了消息sed:no input files。 以下是我正在使用的 while 循环: while IFS= read -r line; do echo "tester: $line" sed -i 's/\s*$//' $line ; done < file_list.txt sed ksh