1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 03:15:28 +02:00

euse: add page (#15009)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
This commit is contained in:
Dainis 2024-12-07 16:04:31 +02:00 committed by GitHub
parent 620a8e8c05
commit 94f5376a2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
pages/linux/euse.md Normal file
View file

@ -0,0 +1,24 @@
# euse
> Enable, disable, and obtain information about Gentoo USE flags.
> More information: <https://wiki.gentoo.org/wiki/Euse>.
- List active global USE flags:
`euse --active --global`
- List active local USE flags:
`euse --active --local`
- Enable a global USE flag:
`sudo euse --enable {{use_flag}}`
- Disable a global USE flag (put a '-' sign in front of the USE flag):
`sudo euse --disable {{use_flag}}`
- Remove a global USE flag:
`sudo euse --prune {{use_flag}}`