@borkena · Post #5673 · 01.01.2026 г., 15:18
Getachew Reda Interview Part II. Watch. https://borkena.com/2026/01/01/ethiopia-getachew-reda-interview-part-ii/#Ethiopia#TPLF#Tigray#Getachew#Eritrea
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
Пребарај: #getachew
@borkena · Post #5673 · 01.01.2026 г., 15:18
Getachew Reda Interview Part II. Watch. https://borkena.com/2026/01/01/ethiopia-getachew-reda-interview-part-ii/#Ethiopia#TPLF#Tigray#Getachew#Eritrea
@borkena · Post #5406 · 30.11.2025 г., 14:10
Mehdi and Getachew on Al Jazeera: Abiy as loser while TPLF Emerges as the Clear Winner. Read more. https://borkena.com/2025/11/29/ethiopia-mehdi-and-getachew-on-al-jazeera-abiy-as-loser-while-tplf-emerges-as-the-clear-winner/#Ethiopia#Mehdi#Getachew#politics#EthiopianPolitics
@addisstandardeng · Post #21084 · 15.01.2026 г., 14:58
News: #US Ambassador to #Ethiopia visits #Humera accompanied by Getachew Reda amid ongoing challenges in Western Tigray US Ambassador to Ethiopia Ervin Massinga on Thursday morning arrived in Humera town, #Western_Tigray, accompanied by #Getachew Reda, Advisor on Horn of Africa Affairs to Prime Minister Abiy Ahmed. According to Amhara regional media, the Ambassador was received by Ashete Demlew, an administrator installed by the #Amhara regional government. The visit is reported to include meetings with residents of Humera and inspections of health facilities in the town. Humera, located in Western Tigray, remains at the center of unresolved political, security, & humanitarian challenges in the aftermath of the two-year war in Tigray. In a message shared by the US Embassy in Addis Abeba on Thursday, Ambassador Massinga said he had witnessed firsthand the hardships facing residents of Humera. “The needs are urgent — damaged infrastructure, limited medical... Read more: https://addisstandard.com/?p=54578