You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
|
|
#Создан: Вт 25 фев 2020 18:24:10 |
|
#Изменён: Ср 04 ноя 2020 23:09:06 |
|
|
|
# Show Gentoo USE flag description |
|
|
|
curl -sq "https://packages.gentoo.org/useflags/${1?USAGE: $(basename "$0") [use flag]}" \ |
|
| awk '/class="lead/{getline; gsub(/^[ \t]+/, "", $0); print}' |
|
|
|
|