发布网友 发布时间:2022-04-23 03:56
共1个回答
热心网友 时间:2022-05-14 05:10
展开1全部cat yourfile|while read line;do echo $line > filetosave;dosomethine;done
上面的 yourfile 为你要读取的文件,filetosave为保存每行的文件,dosomething为你执行的动作。
上面是循环读取每行到文件filetosave 一直到文件结束,filetosave每次都只有一行内容;