7 lines
197 B
Bash
Executable file
7 lines
197 B
Bash
Executable file
#!/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
|