で番号で文字列のbashのソートリストにそれはそうのように並べ替えるときはgrepによるIパイプそれを私は最後
/this/is/a/file/path/product-2.0/file/name/7
/this/is/a/file/path/product-2.0/file/name/10
/this/is/a/file/path/product-2.0/file/name/12
/this/is/a/file/path/product-2.0/file/name/13
/this/is/a/file/path/product-2.0/file/name/6
/this/is/a/file/path/product-2.0/file/name/8
/this/is/a/file/path/product-2.0/file/name/9
をソートする必要がある最後のバージョン番号を持つファイルのリストを持っている:
echo $files | sort -n
/this/is/a/file/path/product-2.0/file/name/10
/this/is/a/file/path/product-2.0/file/name/12
/this/is/a/file/path/product-2.0/file/name/13
/this/is/a/file/path/product-2.0/file/name/6
/this/is/a/file/path/product-2.0/file/name/7
/this/is/a/file/path/product-2.0/file/name/8
/this/is/a/file/path/product-2.0/file/name/9
-nがファイル名の最初の数字で混乱していると思います。
私は、最後の番号順に並べ替えることができますどのように
パスの同じ深さを? – Kevin
はい、私はあなたが勝つ –