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

Резултати

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

Пребарај: #cryptostocks

当前筛选 #cryptostocks清除筛选
Crypto M - Crypto News

@CryptoM · Post #64808 · 10.04.2026 г., 01:23

🚀 U.S. Stocks Rise as Crypto-Linked Stocks Show Mixed Results U.S. stocks ended the trading session on a positive note, with overall gains observed across the market. According to NS3.AI, crypto-linked stocks displayed mixed performance. CRCL experienced a significant decline, falling over 9.34%. In contrast, COIN saw a decrease of more than 3.47%, while Strategy (formerly MicroStrategy) recorded a modest increase of over 0.44%. MARA also showed positive movement, gaining more than 1.79%. #USStocks#CryptoStocks#MarketUpdate#StockMarket#Investing#COIN#CRCL#MARA#MicroStrategy

Crypto M - Crypto News

@CryptoM · Post #64866 · 10.04.2026 г., 05:34

🚀 Hong Kong Crypto Stocks Surge Ahead of Stablecoin License Announcement Hong Kong-listed crypto-related stocks experienced significant gains today as the market anticipates the announcement of the region's first batch of stablecoin licenses. According to NS3.AI, Guotai Junan International saw a remarkable increase of over 20%, while Yunfeng Financial rose nearly 12%. Shenwan Hongyuan Hong Kong also reported a rise of more than 11.5%. The upcoming stablecoin license announcement is expected to impact the local crypto market positively, driving investor interest and confidence. #HongKong#CryptoStocks#StablecoinLicense#GuotaiJunan#YunfengFinancial#ShenwanHongyuan#CryptoMarket#InvestorInterest#CryptoNews