2
0
mirror of https://gitlab.com/Nanolx/NanoDroid synced 2024-10-31 09:20:23 +00:00
NanoDroid/Full/system/bin/bash
Christopher Roy Bratusek a33e745a26 move all utilities from /system/xbin to /system/bin
drop broken links to column utility from microG package
2020-10-10 19:02:31 +02:00

16 lines
301 B
Bash
Executable File

#!/system/bin/sh
# bash: wrapper to set up and run bash from terminal
# osm0sis @ xda-developers
# adopted to GNU Bash setialpha @ xda-developers
dir="$(cd "$(dirname "$0")"; pwd)"
if [ "$1" == "--term" ]; then
term=$2;
shift 2;
else
term=xterm
fi
${dir}/bash.bin --rcfile /system/etc/bashrc $*