User Switcher, just like sudo but worse
Go to file
Alessandro Mauri 37c594c1bd implemented shell wrapper
commands are now run in a subshell, this is often needed for chains of commands
where it is not the main command to need the privilege but a subcommand does,
for example

us echo 30 > /sys/class/backlight/*/brightness

it is not echo that needs the elevated privilege but the redirection '>' does.
2021-04-03 01:40:59 +02:00
config.template todo and notes 2021-04-03 01:20:48 +02:00
LICENSE licensed code 2021-03-27 23:01:22 +01:00
makefile debug options 2021-03-28 16:57:44 +02:00
README.md updated project description 2021-04-03 01:22:36 +02:00
TODO todo and notes 2021-04-03 01:20:48 +02:00
us.c implemented shell wrapper 2021-04-03 01:40:59 +02:00

US - User {Switcher,Shell}

Opens a shell as a different user without needing to authenticate as that user. This is similar to the behavior of su but it allows to execute privileged and/or commands as any other user without needing their password.