4 Star 0 Fork 1

OpenCloudOS Stream/fdupes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
macros.fdupes 447 Bytes
一键复制 编辑 原始数据 按行查看 历史
nilusyi 提交于 2023-03-09 15:15 . OCS package init
%fdupes(s) \
_target=""; \
_symlinks=0; \
%{-s:_symlinks=1;} \
fdupes -q -n -r -p %1 | \
while read _file; do \
if test -z "$_target" ; then \
_target="$_file"; \
else \
if test -z "$_file" ; then \
_target=""; \
continue ; \
fi ; \
if test "$_symlinks" = 1; then \
ln -sf "${_target#%{buildroot}}" "$_file"; \
else \
ln -f "$_target" "$_file"; \
fi ;\
fi ; \
done \
%{nil}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/opencloudos-stream/fdupes.git
[email protected]:opencloudos-stream/fdupes.git
opencloudos-stream
fdupes
fdupes
master

搜索帮助