c65ad9749c
Change-Id: Idf4695294c34bbca157d104cfb6e708bac727473
9 lines
80 B
Bash
Executable File
9 lines
80 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -s $1
|
|
then
|
|
echo "$1 not empty:"
|
|
cat $1
|
|
exit 1
|
|
fi
|