1 Star 0 Fork 0

wuudouglas/radare2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
env.sh 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
Maijin 提交于 2018-08-07 22:14 . Add more R2_ prefix for some var
#!/bin/sh
getabsolutepath() {
[ -d "$1" ] && { cd "$1"; echo "$(pwd -P)"; } ||
{ cd "$(dirname "$1")"; echo "$(pwd -P)/$(basename "$1")"; }
}
pfx=$(getabsolutepath "$1")
if [ -z "$1" ]; then
echo "Usage: ./env.sh [destdir|prefix] [program]"
exit 1
fi
if [ ! -d "$pfx" ]; then
echo "Cannot find $pfx directory"
exit 1
fi
# Support DESTDIR
if [ -d "$pfx/usr/bin" ]; then
pfx="$pfx/usr"
fi
new_env='
R2_ENV_IS_SET=1
R2_LIBR_PLUGINS=${pfx}/lib/radare2
PATH=$pfx/bin:${PATH}
LD_LIBRARY_PATH=$pfx/lib:$LD_LIBRARY_PATH
DYLD_LIBRARY_PATH=$pfx/lib:$DYLD_LIBRARY_PATH
PKG_CONFIG_PATH=$pfx/lib/pkgconfig:$PKG_CONFIG_PATH
'
shift
if [ "$R2_ENV_IS_SET" = 1 ]; then
echo "Nested call"
exec $*
exit $?
fi
if [ -z "$*" ]; then
echo
echo "==> Entering radare2 environment shell..."
echo
echo $new_env $* \
| sed -e 's, ,\n,g' \
| sed -e 's,^, ,g' \
| sed -e 's,$, \\,'
echo
export PS1="r2env.sh$ "
eval $new_env $SHELL
echo
echo "==> Back to system shell..."
echo
else
if [ "$#" -gt 1 ]; then
par=""
p=0
while : ; do
p=$(($p+1))
[ $p -gt $# ] && break
a=`eval echo "\$\{$p\}"`
par="$par\"$a\" "
done
eval $new_env $par
else
eval $new_env $*
fi
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wuudouglas/radare2.git
git@gitee.com:wuudouglas/radare2.git
wuudouglas
radare2
radare2
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385