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