|
- #!/bin/sh
- SOU_DIR=device/fsl/newboard/coverfile
- mkdir -p frameworks/base/core/java/android/voicecontrol
- for f in `find $SOU_DIR -type f`
- do
- if [ "${f/.svn/}" = "$f" ]; then
- d=${f##*coverfile/}
- echo "copy file:"
- echo "source file:" $f;
- echo "target file:" ${d}
- cp -r ${f} ${d} -f
复制代码 |
|