我尝试使用awk
从文本文件中获取特定数字。可以通过连续应用三个规则来识别该数字:
Name(s):
我使用了两个管道awk
来电:
cat file | awk '/^Name\(s\):/' | awk -F " " 'NR==6 {printf "%2.2f", 100 - $3; exit}'
如何将两个awk
调用合并为一个?
答案 0 :(得分:4)
未经测试,因为if (Auth::attempt(['userName' => $request->userName, 'password' => $request->passHash])) {
// Do something
}else if(Auth::attempt(['loginName' => $request->loginName, 'password' =>
$request->passHash])){
//Do something too
}
不存在,但是:
file
答案 1 :(得分:-1)
您可以将AWK语句放入文件-example myprogram.awk-并像
一样使用它awk -f myprogram.awk