3 Star 0 Fork 0

mirrors_radareorg / radare2-r2pipe

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
autogen.sh 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
pancake 提交于 2018-11-26 04:28 . Release 3.1.0
#!/bin/sh
#
# Look for the 'acr' tool here: https://github.com/radare/acr
# Clone last version of ACR from here:
# git clone https://github.com/radare/acr
#
# -- pancake
r2pm -h >/dev/null 2>&1
if [ $? = 0 ]; then
echo "Installing the last version of 'acr'..."
r2pm -i acr > /dev/null
r2pm -r acr -h > /dev/null 2>&1
if [ $? = 0 ]; then
echo "Running 'acr -p'..."
r2pm -r acr -p
else
echo "Cannot find 'acr' in PATH"
fi
else
echo "Running acr..."
acr -p
fi
if [ -n "$1" ]; then
echo "./configure $*"
./configure $*
fi
1
https://gitee.com/mirrors_radareorg/radare2-r2pipe.git
git@gitee.com:mirrors_radareorg/radare2-r2pipe.git
mirrors_radareorg
radare2-r2pipe
radare2-r2pipe
master

搜索帮助