11 lines
174 B
Bash
Executable File
11 lines
174 B
Bash
Executable File
#!/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
|