-1

我在 UrbanCode Deploy Shell 步骤中执行以下命令。我想要的是针对找到的所有文件运行 Util.sh。

find . -type f -exec ls -al {} \;
find . -type f -exec Util.sh -import source= {} overwrite=true \;
Util.sh

输出如下,第二条命令根本没有运行。

delimiter specified is ,
executing script for all values in /app/bip/XMLP/Reports

-------------------------------
executing script for values: /app/bip/XMLP/Reports
/bin/sh /var/tmp/shell_command_5832071109593396198.tmp /app/bip/XMLP/Reports 
-------------------------------
command output: 
./BIP_Rollfoward/tmp/FlexPak/Asset_Allocation/Asset_Allocation.xdmz
./BIP_Rollfoward/tmp/FlexPak/Asset_Allocation/Asset_Allocation.xdoz
/var/tmp/shell_command_5832071109593396198.tmp: Util.sh: not found
===============================
command exit code: 1
4

2 回答 2

0

我不得不更改文件列表过长的目录的所有权,所以我使用了以下 find 命令。我会使用“\;” 关闭执行,但它没有工作。

find /path/to/dir -name \* -exec chown user:group {} +

此代码适用于版本 6.1.3

于 2019-06-21T20:45:33.130 回答
-1

您需要删除 source= {} 中 '=' 和 '{' 之间的空格

应该:

source={}
于 2017-10-17T16:15:27.347 回答