文件系统完结

This commit is contained in:
lzy
2024-05-13 22:13:51 +08:00
parent 1b796adfc3
commit e1c6873368
4 changed files with 195 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
puts(getenv("PATH"));
getchar();
/**
* ./getenv
* ps axf | grep getenv
* pmap 4938
*/
exit(0);
}