在linux bash脚本中,>>在pushd命令中做什么?

时间:2019-08-08 04:16:59

标签: linux bash pushd

我刚开始学习bash脚本,对以下代码感到困惑:

build_web_apps()
{
    for app in $web_apps
    do
        log "Building $app web app..."
        pushed $GIPHY_HOME/../$app >> /dev/null
        ...
        ... (some code)
        ...
        popd >> /dev/null
    done
}

我知道pushdpopd是什么,但是>>在这些行中的作用是什么?

0 个答案:

没有答案