8 lines
191 B
Bash
8 lines
191 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
TMP=`rm -rf tests/dir5`
|
||
|
TMP=`mkdir tests/dir5`
|
||
|
TMP=`cp tests/src/*.pdf tests/dir5/`
|
||
|
TMP=`./splitter split tests/dir5/pdf.pdf 1024`
|
||
|
TMP=`wc -c < tests/dir5/pdf.pdf.part10`
|
||
|
echo $TMP
|