作为 linux 的新手,我有以下问题。我有文件列表(这次是由 svn 状态产生的),我想创建一个脚本来循环它们并用 4 个空格替换制表符。
所以我想从
....
D HTML/templates/t_bla.tpl
M HTML/templates/t_list_markt.tpl
M HTML/templates/t_vip.tpl
M HTML/templates/upsell.tpl
M HTML/templates/t_warranty.tpl
M HTML/templates/top.tpl
A + HTML/templates/t_r1.tpl
....
类似于
for i in <files>; expand -t4;do cp $i /tmp/x;expand -t4 /tmp/x > $i;done;
但我不知道该怎么做...