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.
フォルダーに含まれるサブフォルダーのリストを、名前の昇順で並べ替えたいと思います。
例: フォルダ名:
TF_list_to_test10679 TF_list_to_test1062 TF_list_to_test1078 ...
望ましい出力:
TF_list_to_test1062 TF_list_to_test1078 TF_list_to_test10679 ...
これはどのように行うことができますか?
タブ付きのファイル名がない場合は、次のように動作するはずです。
find . -type d | sed 's/[[:digit:]]*$/&\t&/' | sort -nk 2 | cut -f 1