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 コマンドを実行します。
awk '{if($8 == 346586 && (int($1/10))%10 == 0) {print int($1/10), $1}}' input_data
$1 は長いので、次のような結果が得られます。
2.02152e+17 2021523922099868685
これを解決する方法の手がかりはありますか?