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.
我有一个带有输出的脚本,例如a c d txt iso e z我需要按字母顺序对其进行排序。这些是文件扩展名,所以我不能用一个词将它们编译在一起然后拆分。谁能帮我?
a c d txt iso e z
如果您的脚本名称是foo并且它向标准输出写入一个字符串,例如acd txt iso ez,您可以通过以下方式获取排序列表:
foo
sorted_output=$(foo|xargs -n 1|sort)
当然,根据您要对结果执行的操作,将其存储到数组中可能更有意义。