Changeset d6b45f7


Ignore:
Timestamp:
06/23/2022 10:15:12 AM (22 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18, xry111/soup3, xry111/xf86-video-removal
Children:
8e8dd4f
Parents:
c42d2055
git-author:
Xi Ruoyao <xry111@…> (06/23/2022 10:03:46 AM)
git-committer:
Xi Ruoyao <xry111@…> (06/23/2022 10:15:12 AM)
Message:

change egrep to grep -E

egrep is deprecated since 2007, and the next grep release (3.8 or 4.0)
will print a warning if it's used.

Url: https://git.savannah.gnu.org/cgit/grep.git/commit/?id=a951562

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • postlfs/virtualization/qemu.xml

    rc42d2055 rd6b45f7  
    134134    </para>
    135135
    136     <screen><userinput>egrep '^flags.*(vmx|svm)' /proc/cpuinfo</userinput></screen>
     136    <screen><userinput>grep -E '^flags.*(vmx|svm)' /proc/cpuinfo</userinput></screen>
    137137
    138138    <para>
  • x/installing/xorg-config.xml

    rc42d2055 rd6b45f7  
    176176    <para>
    177177      To confirm that DRI2 hardware acceleration is working, you can (still in
    178       the X terminal) run the command <command>glxinfo | egrep "(OpenGL
     178      the X terminal) run the command <command>glxinfo | grep -E "(OpenGL
    179179      vendor|OpenGL renderer|OpenGL version)"</command>.
    180180      If that reports something <emphasis>other than</emphasis>
     
    347347      variable each time you want the powerful GPU to be used. For example,
    348348
    349 <screen><userinput>DRI_PRIME=1 glxinfo | egrep "(OpenGL vendor|OpenGL renderer|OpenGL version)"</userinput></screen>
     349<screen><userinput>DRI_PRIME=1 glxinfo | grep -E "(OpenGL vendor|OpenGL renderer|OpenGL version)"</userinput></screen>
    350350
    351351      will show OpenGL vendor, renderer and version for the discrete GPU.
Note: See TracChangeset for help on using the changeset viewer.