mirror of
https://github.com/endeavouros-team/eos-bash-shared.git
synced 2026-06-13 01:34:36 +00:00
12 lines
128 B
Bash
Executable File
12 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Show whose password is needed and run 'su -c'.
|
|
|
|
Main()
|
|
{
|
|
printf "Root "
|
|
/usr/bin/su -c "$@"
|
|
}
|
|
|
|
Main "$@"
|