sed 如何仅显示包含“Page”的最大行数
目前,这仅显示数字。
sed 's/[^0-9]*//g')
我如何告诉 sed 仅显示找到的最大数字,仅考虑包含单词“Page”的行?
Currently, this shows only numbers.
sed 's/[^0-9]*//g')
How can I tell sed to display ONLY the largest number found, taking into account ONLY the line which contains the word "Page" ?
或者
or