>     $ ld.so --help | sed -n '/glibc-hwcaps directories/,$p'
>     Subdirectories of glibc-hwcaps directories, in priority order:
>       x86-64-v4
>       x86-64-v3
>       x86-64-v2 (supported, searched)

I find this a nice example of using UNIX tools.
Much as I love them, I could not resist sending equivalents:

$ ld.so --help| sed '/glibc-hwcaps directories/,$!d'
Subdirectories of glibc-hwcaps directories, in priority order:
  x86-64-v4
  x86-64-v3 (supported, searched)
  x86-64-v2 (supported, searched)

$ ld.so --help|grep -A5 'glibc-hwcaps directories'
Subdirectories of glibc-hwcaps directories, in priority order:
  x86-64-v4
  x86-64-v3 (supported, searched)
  x86-64-v2 (supported, searched)

greg
-- 
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to