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
Weekend
Let's begin,
Feet on feet
Following each other
Across the room,
Like a fleet
Unrequited and washed up
At shores
Unreachable and silent dead
Now pace up,
Reach my hand
Sigh
And burn
With violent fumes,
Find me a blink away
In carpeted elevators
Locked
In gaze
Finally,
Race me to the longest yard
At 3
Past midnight,
Rest on this hammock
Of tacit fears
And inhibitions,
Ask me
If I know myself,
I'll pause
And say
More each day
When I'm with you.
#review#poetry#ap
I've been thinking of life
And it was raining season
Life is worse than the hell
Why? Couldn't get reason
How and when will i get rid
From this unbearable pain
People can shouting loudly
I could not cry in the rain
#ap#review#shortpoem
Tanka : 57577
I'm alone at my place
Perhaps, someone will come here
A beautiful lady, and
Will take my hand in her hand
Maybe will say I'm with you.
#ap#review#tanka
Tanka : 57577
If I do any crime!
If I hurt you more before:
Will you forgive me?
Like you forgave me before;
I like you because of these.
#ap#tanka#review
I sniffed our wilted pink roses
When thy old letters, I dupp'd
Haue not rights to touch thou
To hug, To kiss thou forehead
#Ap#quatrain#review
Words : Old/Middle into Morden English
Thy - your
dupp'd -opened
Haue/Hast not - have not
Thou - you (subject)
• Quatrain •
The world can't see inside's pain
And, tears are hidden in the rain
Even if the world calls me stupid
But, Her voice affects like music
#ap#quatrain#review
#NATO
Jens #Stoltenberg (#Ap|S&D): “Onorato dalla decisione degli Stati NATO di estendere il mio mandato come Segretario Generale fino al 1° ottobre 2024. Il legame transatlantico tra Europa e Nord America ha garantito la nostra libertà e sicurezza per quasi 75 anni e, in un mondo più pericoloso, la nostra Alleanza è più importante che mai.”
@OsservatorioEsteri