代码拉取完成,页面将自动刷新
#!/bin/sh
#auther: andycrusoe@gmail.com
#使用说明:https://github.com/appotry/PTtool#readme
#结合du -b可以得到性能更快更好的版本,目前这个可用,先这样了
#查找文件硬链接
#ls -ialh file.txt
#find . -inum 1234
SRC="/share/Download/tmp/src"
DST="/share/Download/tmp/dst"
FILEGIG=1000000c
SAVEIFS=$IFS
IFS=$(printf "\n\b")
servicectl_usage(){
echo "Usage:mklink.sh sourcedir dstdir"
return 1
}
servicectl(){
if [ -z "$1" ] || [ -z "$2" ]; then
servicectl_usage
fi
}
if [ $# -eq 2 ]; then
SRC=$1
DST=$2
echo "User set:"
echo "src:$SRC"
echo "dst:$DST"
else
servicectl_usage
echo "use default set:"
echo "源目录src:$SRC"
echo "目的目录dst:$DST"
exit 255
fi
#查找大于1M的文件,硬链接
find "$SRC" -size +$FILEGIG > /tmp/findfiles
while IFS= read -r i
do
echo "work:$i"
if [ -d "$i" ]; then
echo "跳过处理目录1:$i"
echo "--"
continue
elif [ -e "$i" ]; then
echo "src file:$i"
fi
#判断目录是否已经存在
tmppth=$(dirname "$i")
pth=$(echo "$tmppth" | sed "s#${SRC}#${DST}#g")
if [ ! -d "$pth" ]; then
echo "mkdir -p $pth"
mkdir -p "$pth"
else
echo "跳过处理目录2:$i"
echo "--"
continue
fi
dstfile=$pth/$(basename "$i")
echo "dst file:${dstfile}"
#判断文件是否已经存在
#不存在才复制
if [ ! -f "$dstfile" ]; then
echo "cp -l $i $dstfile"
cp -l "$i" "$dstfile"
fi
echo "--"
done < /tmp/findfiles
rm /tmp/findfiles
#查找小于1M的文件,复制小于1m的文件
find "$SRC" -size -$FILEGIG > /tmp/findfiles
while IFS= read -r i
do
echo "work:$i"
if [ -d "$i" ]; then
echo "跳过处理目录3:$i"
echo "--"
continue
elif [ -e $i ]; then
echo "src file:$i"
fi
#判断目录是否已经存在
tmppth=$(dirname "$i")
pth=$(echo "$tmppth" | sed "s#${SRC}#${DST}#g")
if [ ! -d "$pth" ]; then
echo "mkdir -p $pth"
mkdir -p "$pth"
fi
dstfile=$pth/$(basename "$i")
echo "dst file:${dstfile}"
#判断文件是否已经存在
#不存在才复制
if [ ! -f "$dstfile" ]; then
echo "cp $i $dstfile"
cp "$i" "$dstfile"
fi
echo "--"
done < /tmp/findfiles
rm /tmp/findfiles
IFS=$SAVEIFS
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。