This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
sys_prog/splitter/tests/test6.sh

12 lines
180 B
Bash
Executable File

#!/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