如何在 shell 脚本中测试我是否在 Scratchbox2 中运行



在旧的Scratchbox中,可以这样做:

if [ -f /targets/links/scratchbox.config ]; then 
    echo "here goes my sbox-dependent stuff" 
fi

但是Scratchbox2呢,有办法找到这个吗?

如何测试环境变量'LD_PRELOAD'

if [[ $LD_PRELOAD =~ "sb2" ]]; then 
    true # is running under sb2
fi

相关内容

  • 没有找到相关文章

最新更新