Ubuntu Pastebin

Paste from bash at Thu, 5 Jan 2017 18:25:10 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash

rm -f exit.*
i=0
ii=0

while [ $i -lt 401 ]
do

	i=$(( $i+1 ))
	
	while [ $ii -lt 201 ]
	do
	
	
		echo -n "0 "  >>exit.01
		echo -n "1 "  >>exit.02
		echo -n "x1 " >>exit.03
		echo -n "y1 " >>exit.04
		
			ii=$(( $ii+1 ))
	done
	
	ii=0
	
done
Download as text