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
#WTIOIL
Крупный трейдер нарастил лонг по нефти
Крупнейший ончейн-лонг по WTIOil внес еще $11,94 млн USDC на Hyperliquid, чтобы увеличить позицию.
Сейчас он держит лонг на 383 000 xyz:CL стоимостью около $41,49 млн.
🚀 Abraxas Capital Closes Major Oil Short Positions, Shifts Focus to Bitcoin and Gold
On April 10, Hyperinsight monitoring revealed that Abraxas Capital, previously the largest oil short seller on the Hyperliquid platform, closed its significant WTIOIL and BRENTOIL short positions this morning. According to BlockBeats, the positions, valued at approximately $160 million, were closed at average prices of $95 and $95.5, respectively, resulting in a total profit of around $10.15 million.
Following the closure of these positions, the entity has not initiated any large-scale new positions. Currently, its main holdings include a long position in Bitcoin valued at $20.5 million and a short position in gold amounting to $30.8 million.
It is reported that since March 26, the address had aggressively opened oil short positions, with the position size peaking at $160 million. After recent ceasefire news, the holdings shifted from an unrealized loss of $9.7 million to a profit, which at one point expanded to nearly $10 million, before profit-taking began yesterday afternoon.
#AbraxasCapital#OilShort#Bitcoin#Gold#WTIOIL#BRENTOIL#Hyperliquid#CryptoInvesting#CommodityTrading#BTC
🚀 Oil Market Sees Increased Activity from Major Investors
On April 10, Hyperinsight reported significant activity in the oil market on the Hyperliquid platform, specifically Trade.xyz. According to BlockBeats, 14 major investors, known as whales, have opened positions in crude oil. Among them, 10 have opted for WTIOIL long positions, while 4 have chosen BRENTOIL long positions, indicating a strong bullish sentiment. No new large-scale short positions have been established today.
The most pressured long positions in terms of liquidation are held by two major investors. The WTIOIL long position, associated with the address 0xf9fbfe77059b980cd8aef58204a3a66f9eaa0b98, faces a liquidation price of $87.7 and has a holding size of $5.02 million. Meanwhile, the BRENTOIL long position, linked to the address 0x9ab1c356e6af86361446497fce954b3cdf940206, has a liquidation price of $87.2 and a holding size of $1.91 million.
#OilMarket#Investors#CrudeOil#WTIOIL#BRENTOIL#Bullish#Trading#Hyperliquid#BlockBeats#Whales