Skip to content

Commit 839a1ff

Browse files
committed
Create several files
1 parent b1635b0 commit 839a1ff

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

mkfiles.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/bash
2+
3+
# Script Name : mkfiles.sh
4+
# Author : Craig Richards
5+
# Created : 30-October-2012
6+
# Last Modified :
7+
# Version : 1.0
8+
9+
# Modifications :
10+
11+
# Description : This will create several 100Mb files
12+
13+
i=0
14+
while [ $i -lt 11 ]
15+
do
16+
dd if=/dev/zero of=/file_$i bs=1024 count=10000
17+
i=$[ $i + 1 ]
18+
done

0 commit comments

Comments
 (0)