Anybody know what the default shell "/system/bin/sh" is? is it csh,ksh,ash.... I'm trying to write some scripts to execute with /system/bin/sh and need to know the syntax.
Thanks
#!/system/bin/sh
if -e /data/special; then
<do something>
fi
complains about -e not found.
if ( -e...