8 lines
195 B
Bash
8 lines
195 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
TMP=`rm -rf tests/dir0`
|
||
|
TMP=`mkdir tests/dir0`
|
||
|
TMP=`cp tests/src/*.txt tests/dir0`
|
||
|
TMP=`./splitter split tests/dir0/file.txt 4`
|
||
|
find tests/dir0 -name "*.txt.*" -exec echo {} \; | sort
|