我知道,你通常不希望一线指挥员/单列指挥员太长,但似乎有时会有一个长途的单行,以职能取代重复性的内容。
是否有可能利用短职能缩短你的指挥时间?
例如,根据我的知识,我没有上限或双轨功能,因此你可以书写职能。
function round(a){a=(a < int(a)+0.5) ? int(a) : int(a+1)}
以及
function ceil(a){a=(a == int(a)) ? a : int(a)+1}
您能否将这些职能纳入一个线人?
e.g.
您能否用纸件获取文件上限
$ cat money.data
121.52 133.45 136.77 155.22
132.11 141.30 12.78 78.98
31.21 149.03 33.50 84.67
......最高职能是:
$ tail money.data
122 134 137 156
133 142 13 79
32 150 34 85
...以及 for the round function would be
$ tail money.data
122 133 137 155
132 141 13 79
31 149 34 85
I played around with r以及om awk statements, but couldn t figure out how to incorporate the functions into one liners...