次の変換(テキスト選択)用のAutomator Serviceを作成したい。
2 番目のパラメーターによる並べ替え
入力:
#define Type1 String(@"Type1", @"Other")
#define Type2 String(@"Type2", @"Britain")
#define Type3 String(@"Type3", @"America")
#define Type4 String(@"Type4", @"Canada")
出力:
#define Type3 String(@"Type3", @"America")
#define Type2 String(@"Type2", @"Britain")
#define Type4 String(@"Type4", @"Canada")
#define Type1 String(@"Type1", @"Other")
コマンドを使用できることは承知していますsort | uniq
が、それは左から右にソートされます。しかし、上記のように2番目のパラメーターで並べ替えたいです。
ありがとう!