如何使用bash对文件夹中的文件进行排序?

时间:2011-01-23 13:04:49

标签: linux bash shell sorting

我将这些文件放在一个文件夹中:

chap11-solutions.pdf
chap12-solutions.pdf
chap13-solutions.pdf
chap14-solutions.pdf
chap15-solutions.pdf
chap16-solutions.pdf
chap17-solutions.pdf
chap21-solutions.pdf
chap22-solutions.pdf
chap23-solutions.pdf
chap24-solutions.pdf
chap25-solutions.pdf
chap26-solutions.pdf
chap2-solutions.pdf
chap3-solutions.pdf
chap4-solutions.pdf
chap5-solutions.pdf
chap6-solutions.pdf
chap7-solutions.pdf
chap8-solutions.pdf
chap9-solutions.pdf

我如何以这种方式对它们进行排序:chap1 ...,chap ... 2,....,chap11 ...,chap12,...使用Ubuntu bash shell?感谢。

4 个答案:

答案 0 :(得分:24)

ls|sort -V

-V参数可确保将chap10视为chap9的上限。

答案 1 :(得分:8)

GNU ls内置了版本排序:

ls -lv

答案 2 :(得分:2)

如果你有红宝石(1.9.1 +)

ruby -e 'puts Dir["chap*pdf"].sort_by{|x|x[/\d+/].to_i}'

答案 3 :(得分:1)

假设您要重命名文件,以便日后不必再对它们进行排序:

for f in chap*-solutions.pdf; do num=`echo $f | grep -o "[0123456789]\+"`; two_num=`printf "%02d" $num`; mv $f chap$two_num-solutions.pdf; done
  • grep -o "[0123456789]+"输出章节号(一位或两位数)
  • printf返回包含零填充数字
  • 的字符串