导入文件到QtCreater中

1. 两个脚本

findallmediafiles.sh

export TheSourcePath="$1/frameworks/base/include/ $1/frameworks/base/media/ $1/frameworks/base/libs $1/hardware"
rm ./a.txt
#echo $TheSourcePath
findallCfiles.sh "$TheSourcePath"

findallCfiles.sh

export TheSourcePath=$1
#echo $TheSourcePath
find $TheSourcePath -name "*.c" >> a.txt
find $TheSourcePath -name "*.cpp" >> a.txt
find $TheSourcePath -name "*.h" >> a.txt
find $TheSourcePath -name "*.hpp" >> a.txt
find $TheSourcePath -name "*.java" >> a.txt
find $TheSourcePath -name "Android.mk" >> a.txt

这两个文件需要放到 ~/bin/下

修改其权限,给其加上可执行权限 sudo chmod a+x <filename>

~/bin/加入到环境变量PATH中。

2. 按情况执行两个脚本

3. 打开a.txt,修改之

     需要给末尾加上 \,  具体在gvim中用: :%s/$/ \\

4. 把a.txt中的所有内容copy到QT的工程文件中,大功造成!


你可能感兴趣的:(脚本,Path)