【发布时间】:2021-03-17 19:46:10
【问题描述】:
你会如何做到这一点?
if [[ -z $VERBOSE ]]; then
REDIRECT=">/dev/null 2>/dev/null"
fi
echo "Installing Pip packages" # Edited in for clarity
pip install requirements.txt $REDIRECT
echo "Installing other dependency"
<Install command goes here> $REDIRECT
【问题讨论】:
标签: bash shell environment-variables output-redirect