remove a useless use of cat and or logic

This commit is contained in:
Jonathan Dowland 2015-07-22 10:33:13 +01:00
parent 2232bb67ae
commit 5624b48038

2
test
View File

@ -1,2 +1,2 @@
#!/bin/sh
[ `cat bocker | wc -l` -le 100 ] || exit 1
[ `wc -l < bocker` -le 100 ]