-
Notifications
You must be signed in to change notification settings - Fork 3
Commands: su
tanazd1-octo edited this page Mar 26, 2026
·
1 revision
Lightweight su-like command (non-root).
⚡ Part of termux-miscellaneous
su is a custom command that mimics basic behavior of the standard su
but does NOT provide real root access.
It is designed for convenience, testing, or controlled command execution.
This is NOT the real su.
- ❌ No root privileges
- ❌ No system-level access
- ✅ Safe user-level behavior
su <command>su lssu "echo Hello"Depending on implementation, su may:
- Execute commands in a controlled environment
- Act as a wrapper around shell execution
- Simulate privilege-like behavior without actual elevation
May behave similar to:
bash -c "<command>"or a custom execution wrapper.
- Runs entirely in user space
- No special permissions required
- Safe to use in Termux
- Cannot access restricted system files
- Does not bypass Android security
- Not a replacement for real root
- Use for testing command execution
- Combine with other tools:
tc "su ls" "echo Done"