12 lines
180 B
Bash
12 lines
180 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
TMP=`rm -rf tests/dir6`
|
||
|
TMP=`mkdir tests/dir6`
|
||
|
TMP=`cp tests/src/*.pdf tests/dir6/`
|
||
|
TMP=`./splitter split`
|
||
|
TMP=`echo $?`
|
||
|
if [ $TMP == "0" ]; then
|
||
|
echo 0
|
||
|
else
|
||
|
echo 1
|
||
|
fi
|