计算通过命令‘less’查看的行数

计算通过命令‘less’查看的行数

我运行命令less

ls /usr/bin | less

有很多行目录。

2to3-
2to3-2.7
AssetCacheLocatorUtil
AssetCacheManagerUtil
AssetCacheTetheratorUtil
BuildStrings
CpMac
...

如何枚举它们?

答案1

我想你的意思是ls /usr/bin?无论如何,你可以使用以下-N选项:

ls /usr/bin | less -N

man less

   -N or --LINE-NUMBERS
          Causes a line number to be displayed at the  beginning  of  each
          line in the display.

相关内容