Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在一列中搜索一个字符串的函数,我将如何允许它为我的脚本提供多列以使用多个搜索字符串进行搜索?
awk -v s=$1 -v c=$2 '$c ~ s { print $0 }' $3
谢谢
您可以在模式中使用 or 子句:
awk -v s=$1 -v c=$2 '$c ~ s || $3 == "foo"' $3
将打印文件 $3 中的所有行,其中列 $2 匹配字符串 $1 或 $3 匹配字符串“foo”。请注意,“print $0”操作是多余的,如果没有给出任何操作,它是默认操作。
再说一次,我有一些对你们来说可能很简单的东西,但我得到了
syntax error <?php // login.php line one.
然后在我得到的javascript上
ReferenceError: ajax is not defined ajax.onreadyState = fu