如何将当前目录的github.com替换为镜像源(kkgithub.com)
温馨提示:这篇文章已超过385天没有更新,请注意相关的内容是否还可用!
find . -type f -exec sed -i ‘s/github.com/kkgithub.com/g’ {} +
这个命令会执行以下操作:
find .: 在当前目录及其所有子目录中递归搜索文件。
-type f: 指定只搜索普通文件(regular files),排除目录等其他类型的文件。
-exec: 对 find 命令找到的文件执行后续操作。
sed -i 's/github.com/kkgithub.com/g' {} +: 对每一个找到的文件,使用 sed 命令进行替换操作。具体含义如下:
sed: 文本处理工具,用于对文本进行替换等操作。
-i: 直接修改文件内容。
's/github.com/kkgithub.com/g': 这是 sed 命令的替换操作,将每个文件中的所有 “github.com” 替换为 “kkgithub.com”。其中,s 表示替换操作,g 表示全局替换(即每行出现的所有匹配项都会被替换)。
{}: find 命令找到的每个文件名会替换这个占位符。
+: 将所有找到的文件名作为参数传递给单个 sed 命令,而不是为每个文件执行单独的 sed 命令。
是这样的
装新机器的时候因为github连接不稳定导致pwndbg执行setuo.sh报错,
Preparing editable metadata (pyproject.toml) ... done Collecting pt@ git+https://github.com/martinradev/gdb-pt-dump@89ea252f6efc5d75eacca16fc17ff8966a389690 (from pwndbg==2024.2.14) Cloning https://github.com/martinradev/gdb-pt-dump (to revision 89ea252f6efc5d75eacca16fc17ff8966a389690) to /tmp/pip-install-8qb9h8ks/pt_f23e111d34bd4efe8ccaf4d354ccf4f1 Running command git clone --filter=blob:none --quiet https://github.com/martinradev/gdb-pt-dump /tmp/pip-install-8qb9h8ks/pt_f23e111d34bd4efe8ccaf4d354ccf4f1 fatal: unable to access 'https://github.com/martinradev/gdb-pt-dump/': GnuTLS recv error (-110): The TLS connection was non-properly terminated. error: subprocess-exited-with-error × git clone --filter=blob:none --quiet https://github.com/martinradev/gdb-pt-dump /tmp/pip-install-8qb9h8ks/pt_f23e111d34bd4efe8ccaf4d354ccf4f1 did not run successfully. │ exit code: 128 ╰─> See above for output. note: This error originates from a subprocess, and is likely not a problem with pip. error: subprocess-exited-with-error × git clone --filter=blob:none --quiet https://github.com/martinradev/gdb-pt-dump /tmp/pip-install-8qb9h8ks/pt_f23e111d34bd4efe8ccaf4d354ccf4f1 did not run successfully. │ exit code: 128 ╰─> See above for output. note: This error originates from a subprocess, and is likely not a problem with pip.
免责声明:我们致力于保护作者版权,注重分享,被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理! 图片声明:本站部分配图来自人工智能系统AI生成,觅知网授权图片,PxHere摄影无版权图库和百度,360,搜狗等多加搜索引擎自动关键词搜索配图,如有侵权的图片,请第一时间联系我们,邮箱:ciyunidc@ciyunshuju.com。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!

