当前位置: 技术问答>linux和unix
怎么用shell创建连续文件名的文件??
来源: 互联网 发布时间:2016-11-17
本文导语: 比如file1 file2 file3 file4 .... 当然不要一个touch一个的敲... 而是批量的建立... | for i in `seq 1 4` do touch file${i} done | for i in `awk 'BEGIN { for( i=1; i
比如file1 file2 file3 file4 ....
当然不要一个touch一个的敲...
而是批量的建立...
当然不要一个touch一个的敲...
而是批量的建立...
|
for i in `seq 1 4`
do
touch file${i}
done
do
touch file${i}
done
|
for i in `awk 'BEGIN { for( i=1; i