Browse Source

Fix two typos :)

Peter Pentchev 13 years ago
parent
commit
b41d76acd3
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      test.sh

+ 2
- 2
test.sh View File

17
 	fi
17
 	fi
18
 	cnt2=`wc -c test2 | (read a b; echo "$a")`
18
 	cnt2=`wc -c test2 | (read a b; echo "$a")`
19
 	if ! expr "x$cnt2" : 'x[0-9][0-9]*$' > /dev/null; then
19
 	if ! expr "x$cnt2" : 'x[0-9][0-9]*$' > /dev/null; then
20
-		echo 'Could not count the characters in the test1 file'
20
+		echo 'Could not count the characters in the test2 file'
21
 		exit 1
21
 		exit 1
22
 	fi
22
 	fi
23
 	cnt3=`wc -c test3 | (read a b; echo "$a")`
23
 	cnt3=`wc -c test3 | (read a b; echo "$a")`
24
 	if ! expr "x$cnt3" : 'x[0-9][0-9]*$' > /dev/null; then
24
 	if ! expr "x$cnt3" : 'x[0-9][0-9]*$' > /dev/null; then
25
-		echo 'Could not count the characters in the test1 file'
25
+		echo 'Could not count the characters in the test3 file'
26
 		exit 1
26
 		exit 1
27
 	fi
27
 	fi
28
 
28
 

Loading…
Cancel
Save