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

Резултати

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

Пребарај: #akashap

当前筛选 #akashap清除筛选
Pensive|

@PensivePost · Post #5438 · 28.09.2021 г., 13:10

#review#AkashAP Contemplating about this quote, it's quite interesting but confusing as well. After the mistake, why would a good man spend time in sorrow instead of learning. And a bad man too... Please describe.

Pensive|

@PensivePost · Post #5442 · 30.09.2021 г., 04:13

I am blind not with the eye, but with the heart; 'Trust' was one of them. #AkashAP#quote#review Meaning : i was blind with the heart (A kind man) because of that i did trust on someone more than myself. Every good people or a kind man did it once. 👍😁

Pensive|

@PensivePost · Post #5417 · 24.09.2021 г., 06:04

When she is dismal, The heart cries blart, An auspicious time, it was When I met her: The world says My heart is a stone heart, So how did this heart Fall in love with her? The sun isn't so beautiful When it rises: I forget my self When i look in her eyes. #AkashAP#review#shortpoem

Pensive|

@PensivePost · Post #5571 · 29.12.2021 г., 05:25

She's one in a billion!! Her smell's like rosemary perfume, And golden hair's like sonagachi; The lips are looking like amaryllis; The face is like the morning sun; Body is as soft as the balloon; Her voice is as sweet as elaichi; Brown eyes are like killing us – And such beauty is only one!! • Difficult Words • Sonagachi - known as Golden Tree Amaryllis - known as Red Beautiful Flower Elaichi - Cardamom #AkashAP#review#poem#oldone#noshare