假设我有一些命令的输出(例如ls -1):
ls -1
a b c d e ...
我想echo依次对每个命令应用一个命令(比如说).例如
echo
echo a echo b echo c echo d echo e ...
在bash中最简单的方法是什么?
bash
bash ×1