11 lines
174 B
Plaintext
11 lines
174 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Usage: create-split-src
|
||
|
|
||
|
# Currently in ${pkg_fake_root_dir}
|
||
|
# Should send files in ${pkg_fake_root_src_dir}
|
||
|
|
||
|
# First, list files
|
||
|
find . | while read F; do
|
||
|
done
|