Linux - 多行gawk行号

时间:2016-10-01 22:30:44

标签: linux gawk

我有这个gawk脚本应该以这种格式输出文本:

'

这是脚本:

line 1: I am just a poor boy
line 1 reversed: boy poor a just am I

我的问题是如何得到"线x反转:"在反向线上?

1 个答案:

答案 0 :(得分:0)

这有效......

    ->Where( function ($query) use ($state){ 
        if(!empty($state)) {
            $query->where('invoice.status','=',$state);
        } else {
            $query->whereNotNull('invoice.status');
        }
    })
    ->Where( function ($query) use ($customerId){ 
        if(!empty($customerId)) {
            $query->where('invoice.customerId','=',$customerId);
        } else {
            $query->whereNotNull('invoice.customerId');
        }
    })