TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #411 · 9 фев.

reload_flag="" if [[ -n "${DEBUG}" ]]; then reload_flag="--reload" fi if [[ -n "${WORKER_COUNT}" ]]; then workers=${WORKER_COUNT} else workers=2 fi gunicorn --workers ${workers} \ --bind 0.0.0.0:8000 \ ${reload_flag} main.wsgi Писали такие конструкции чтобы проверить наличие флага и сформировать команду правильно? На самом деле можно сделать тоже самое проще. Для этого используются операторы условной подстановки, доступные в оболочках семейства POSIX. :- для установки значений по умолчанию ${WORKER_COUNT:-2} Если переменная не объявлена, то будет дефолтное значение 2. :+ подставляет указанный текст, если переменная не пуста ${DEBUG:+--reload} Если что-то есть в переменной то распечатается текст после символа +, в противном случае - ничего. Удобно для опциональных флагов, как в нашем примере. Итого наш скрипт может выглядеть так: gunicorn --workers ${WORKER_COUNT:-2} \ --bind 0.0.0.0:8000 \ ${DEBUG:+--reload} main.wsgi Есть еще два оператора. := не только подставить дефолтное значение, но и присвоить его переменной, если она пуста # никаких переменных еще нет VAL1=${VAL2:=hello} # теперь доступны обе echo $VAL1 $VAL2 # hello hello :? остановить выполнение с ошибкой, если переменной нет. echo ${MISS:?is required} bash: MISS: is required Код выхода будет 1. #tricks#linux

Резултати

Пронајдени 1 слични објави

Пребарај: #birdconservation

当前筛选 #birdconservation清除筛选
EKOLOG.UZ| ENG

@ekologuzenglish · Post #11029 · 01.01.2026 г., 08:02

🦤 The Great Bustard Has Returned to Uzbekistan In early November 2025, one of the rarest birds of Uzbekistan and the world — the Great Bustard — returned to the country for wintering. 📍 More than 50 individuals are currently staying in the Farish and Gallaorol districts of Jizzakh region. Some of these critically endangered birds have even been captured on video — truly rare and valuable footage. As part of the Great Bustard conservation program in Uzbekistan, the Bird Protection Society of Uzbekistan continues to: conduct weekly monitoring of the population and threats; hold educational talks in schools of Jizzakh region; organize public hearings with active hunters to prevent illegal hunting of bustards. ❗️ Important to note: The Bird Protection Society of Uzbekistan is the only public environmental organization in the country that consistently advocates for the protection of the Great Bustard — the largest and rarest bird species in Uzbekistan. The future of the Great Bustard in Uzbekistan — and its global population — largely depends on our actions today. This is our shared contribution to protecting endangered species that may disappear tomorrow. ☘️Read the latest environmental news on the @ekologuz page. Follow us and send your suggestions and wishes via @eklguz_bot Instagram | Facebook | Twitter | Sayt | Youtube. #GreatBustard#EndangeredSpecies#BirdConservation#Biodiversity#EcologyUzbekistan