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
🌊 Bali authorities warn of high tides
🌤 Bali's Meteorology, Climate and Geophysics Agency is warning of extreme weather conditions for several days. In particular, of extremely high tides on the southern coast of the island.
❌ The population and tourists are advised to temporarily refrain from bathing on the beach of Kuta.
@BaliNews
#weather#tides#Kuta
🌎 In Australia’s Kimberley region, the Horizontal Falls are created when huge tidal currents force seawater through narrow rock gorges, producing powerful, temporary waterfalls that appear to flow sideways. Tides here can rise over 10 meters, creating one of the world’s most unusual tidal phenomena. ✨
#tides⚡#waterfalls⚡#Australia
👉subscribe Interesting Planet
🌍 Earth’s tides are driven mostly by the Moon’s gravity, causing oceans to rise and fall all over the globe. These constant movements help mix ocean waters and shape coastal ecosystems. ✨
#tides⚡#ocean⚡#cycles⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography🌍
🌍 The Wadden Sea along Europe’s North Sea coast is the world’s largest tidal mudflat system. Twice daily, the sea retreats for kilometers, revealing vast sandbanks and rich habitats for millions of migratory birds. ✨
#coastline⚡#tides⚡#wildlife⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels
🌍 The Bay of Fundy in eastern Canada experiences the highest tidal range on Earth—up to 16 meters between high and low tide. These extreme tides carve dramatic coastal cliffs and ever-changing mudflats. ✨
#tides⚡#coast⚡#landscape⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels