1. 程式人生 > >touch批量建立檔案

touch批量建立檔案

#!/bin/bash

#touch.sh file 10 -》執行格式

#建立file1-file10共十個檔案

num=$2

while [ ! $num -eq 0 ]

do

touch $1{$num}.c #touch $1$num

#echo $1{$num,$1}.c

let num=$num-1

done

echo "touch $2 file success"