TEST_RESULTS := ./result/* failures.txt: $(TEST_RESULTS) @rm -f $@ @for file in $^; do \ if grep -q 'This case is failed' $$file; then \ echo "Processing $$file..."; \ grep '{.*}' $$file >> failures.txt; \ fi; \ done执行这个命令的时候,提示make: execvp: /bin/sh: 参数列表过长 make: *** [Makefile:310:failures.txt] 错误 127怎么解决,请在此基础上做出更改,并给出完整脚本代码
时间: 2023-11-22 21:56:59 浏览: 101
这个错误通常是因为命令参数列表过长导致的,可以将参数列表拆分成多个小块来解决这个问题。下面是修改后的完整脚本代码:
```
TEST_RESULTS := ./result/*
failures.txt: $(TEST_RESULTS)
@rm -f $@
@for file in $^; do \
if grep -q 'This case is failed' $$file; then \
echo "Processing $$file..."; \
grep '{.*}' $$file >> failures.tmp; \
fi; \
done
@cat failures.tmp | xargs echo >> failures.txt
@rm -f failures.tmp
```
这个脚本会将所有的测试结果文件按照指定文件路径 `./result/*` 匹配,然后逐一进行处理。如果文件中包含 "This case is failed",则会将该文件中所有符合正则表达式 `{.*}` 的内容追加到 `failures.tmp` 文件中。最后,将 `failures.tmp` 中的内容通过 `xargs` 命令合并成一行,并追加到 `failures.txt` 文件中,最后删除临时文件 `failures.tmp`。
相关问题
TEST_RESULTS := ./result/* failures.txt: $(TEST_RESULTS) @rm -f $@ @for file in $^; do \ if grep -q 'This case is failed' $$file; then \ echo "Processing $$file..."; \ grep '{.*}' $$file >> failures.txt; \ fi; \ done执行这个命令的时候,提示make: execvp: /bin/sh: 参数列表过长 make: *** [Makefile:310:failures.txt] 错误 127怎么解决
这个错误通常是因为参数列表过长导致的。可以尝试将命令改为:
```
find ./result -type f -name '*.txt' -exec grep -q 'This case is failed' {} \; -print0 | xargs -0 grep '{.*}' > failures.txt
```
这个命令使用了 `find` 和 `xargs`,可以避免参数列表过长的问题。它会在 `./result` 目录中找到所有以 `.txt` 结尾的文件,然后使用 `grep` 检查文件内容是否包含 `This case is failed`,如果包含则将文件名通过管道传递给 `xargs`,最终将所有匹配到的行写入到 `failures.txt` 文件中。
TEST_RESULTS := ./result/* failures.txt: $(TEST_RESULTS) @rm -f $@ @for file in $^; do \ if grep -q 'This case is failed' $$file; then \ echo "Processing $$file..."; \ grep '{.*}' $$file >> failures.txt; \ fi; \ done执行这个命令的时候,提示make: execvp: /bin/sh: 参数列表过长 make: *** [Makefile:310:failures.txt] 错误 127怎么解决
这个错误通常是由于参数列表过长导致的,可以尝试分批次执行命令,或者使用 xargs 命令来处理。可以将命令改为:
```
find ./result/ -type f -name "*.txt" -exec grep -q 'This case is failed' {} \; -print0 | xargs -0 grep '{.*}' >> failures.txt
```
这个命令使用 find 命令查找所有的 ".txt" 文件,并在每个文件中查找是否包含 "This case is failed" 字符串,如果包含则将文件名通过 xargs 命令传递给第二个 grep 命令进行匹配,最终结果输出到 failures.txt 文件中。这样可以避免参数列表过长的问题。
阅读全文