mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-14 21:23:51 +00:00
451e159fb7
of the util shipped with GNO v2.0.4.
10 lines
165 B
C
10 lines
165 B
C
#include <stdio.h>
|
|
#include <orca.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
setenv("user","root");
|
|
setenv("home",":user:root");
|
|
execve("/bin/gsh","gsh");
|
|
}
|