mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-08 14:58:54 +00:00
11 lines
154 B
Bash
11 lines
154 B
Bash
|
#!/bin/sh
|
||
|
[ -z "$SHELL" ] && SHELL=/bin/sh
|
||
|
|
||
|
if [ -d sys ]; then
|
||
|
export PATH="$PWD/sys/:$PATH"
|
||
|
$SHELL
|
||
|
else
|
||
|
echo "Run from r2 root directory"
|
||
|
exit 1
|
||
|
fi
|