linux下实现将某个目录下的 某种 文件链接到另一个目录下

 
if [ "$1" != "" ]; then        #可以输入链接的目录
    targetpath=$1
else
    targetpath=/mnt/hgfs/sharefile-2/shell  #或则自己固定链接目录
fi


rm -rf *.cpp *.h  #删除该目录下包含的 *.cpp 和 *.h文件


filelist=$(cd $targetpath ; ls *.h *.cpp )  #实现所以文件的查找


for fl in ${filelist}; do  #实现所以*.h 和 *.cpp 文件的链接
    echo $fl
    echo $PWD
    ln -s ${targetpath}/$fl  $PWD/$fl     #实现链接
done


 

你可能感兴趣的:(linux_shell)