Skip to content

Instantly share code, notes, and snippets.

@Nex-Otaku
Last active May 17, 2023 10:01
Show Gist options
  • Save Nex-Otaku/f8ac1a8d0459b70c883c24708bc3c0a3 to your computer and use it in GitHub Desktop.
Save Nex-Otaku/f8ac1a8d0459b70c883c24708bc3c0a3 to your computer and use it in GitHub Desktop.
Устанавливаем "ох..нный совет" на приветствие в консоли

Каждый раз открывая консоль получаем ох*нный совет

1. Устанавливаем httpie — аналог curl

https://httpie.io/

curl -SsL https://packages.httpie.io/deb/KEY.gpg | apt-key add -
curl -SsL -o /etc/apt/sources.list.d/httpie.list https://packages.httpie.io/deb/httpie.list
apt update
apt install httpie

2. Устанавливаем jq — утилиту для обработки JSON

https://stedolan.github.io/jq/

sudo apt-get install jq

3. Добавляем совет на запуск консоли

https://fucking-great-advice.ru/

echo 'echo "" && http http://fucking-great-advice.ru/api/random | jq -r .text && echo ""' >> ~/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment