gpt4 book ai didi

patch - 在 sh 文件中嵌入补丁文件

转载 作者:行者123 更新时间:2023-12-04 02:56:42 25 4
gpt4 key购买 nike

我正在尝试创建一个 .sh内部运行补丁的文件。所以不要运行 patch -p0在与脚本相邻的补丁文件中,我希望将补丁嵌入其中。

我尝试了以下

patch -p0 <<EOF
Index: app/code/Magento/CustomerImportExport/Model/Import/Customer.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- app/code/Magento/CustomerImportExport/Model/Import/Customer.php (date 1487543450000)
+++ app/code/Magento/CustomerImportExport/Model/Import/Customer.php (revision )
@@ -371,6 +371,7 @@
// attribute values
foreach (array_intersect_key($rowData, $this->_attributes) as $attributeCode => $value) {
if ($newCustomer && !strlen($value)) {
+ $entityRow[$attributeCode] = $value;
continue;
}

EOF

但它不起作用。但是,当我运行时 patch -p0在原始补丁文件上,它可以正常工作。任何线索可能是错误的?

谢谢,

最佳答案

试试这个来自:Re: [bug-patch] patch 2.6.1 with here document in a shell script 的建议

Change the above to this, and it will work better:

patch -p0 <<'EOF'

Without the quotes, your script below expands constructs like $@ in the here script.

关于patch - 在 sh 文件中嵌入补丁文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42353983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com