gpt4 book ai didi

Bash 在命令中调用函数

转载 作者:行者123 更新时间:2023-11-29 09:28:56 24 4
gpt4 key购买 nike

我有一个关于在 bash 命令中使用函数的问题。 getRegex 是我的函数,它在文件末尾定义。我要使用的命令如下:

COUNT=`grep -rnE 'getRegex' $HOME/new`

现在我尝试了很多不同的变体,但我无法使它工作,即使我将它分成 2 个。如果我按以下方式调用它,该方法将正常工作:getRegex。知道我错过了什么吗?时间差

最佳答案

要回答的关键词是"bash command substitution" ,您可以在 man bash 或 google 中找到它。

顺便说一句,双引号在这里非常重要。

#!/bin/bash

function my_func () {
echo "no"
}

string="no you don't
no you don't
no you don't
no you don't
no you don't"


COUNT="$( echo "${string}" | grep "$( my_func )" -c )"
echo "${COUNT}"

$> ./ok.sh 
5

关于Bash 在命令中调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7945930/

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