浮動小数点で行をソートする方法

浮動小数点で行をソートする方法

次のファイルがあります。

name: xxx --- time: 5.4 seconds
name: yyy --- time: 3.2 seconds
name: zzz --- time: 6.4 seconds
...

このファイルをこれらの浮動小数点でソートして、次のような新しいファイルを作成したいと思います。

name: yyy --- time: 3.2 seconds
name: xxx --- time: 5.4 seconds
name: zzz --- time: 6.4 seconds
...

コマンドを試しましたが、awk '{print $5}' myfile | sort -g浮動小数点数だけが表示されます。

ベストアンサー1

GNUまたは互換バージョンを使用している場合は、通常の数値ソートに対応するスイッチをsort使用できます。-g

$ sort -g -k5,5 file
name: yyy --- time: 3.2 seconds
name: xxx --- time: 5.4 seconds
name: zzz --- time: 6.4 seconds

-k5,55番目の列でのみソートを実行するようにsortに指示します。

使用法

info sortこのページの詳細を覚えておいてください。

'-g'
'--general-numeric-sort'
'--sort=general-numeric'
     Sort numerically, converting a prefix of each line to a long
     double-precision floating point number.  *Note Floating point::.
     Do not report overflow, underflow, or conversion errors.  Use the
     following collating sequence:

        * Lines that do not start with numbers (all considered to be
          equal).
        * NaNs ("Not a Number" values, in IEEE floating point
          arithmetic) in a consistent but machine-dependent order.
        * Minus infinity.
        * Finite numbers in ascending numeric order (with -0 and +0
          equal).
        * Plus infinity.

     Use this option only if there is no alternative; it is much slower
     than '--numeric-sort' ('-n') and it can lose information when
     converting to floating point.

おすすめ記事