一、代码理解1.env文件夹-environ.c代码#include #include int main(void){ printf("PATH=%s\n", getenv("PATH"));//getenv函数用来取得参数PATH环境变量的值,执行成功则返回该内容的指针 setenv("PATH"...
分类:
其他好文 时间:
2015-11-29 22:55:27
阅读次数:
217
第十二周代码学习一、environ.c#include #include int main(void){ printf("PATH=%s\n", getenv("PATH")); setenv("PATH", "hello", 1); printf("PATH=%s\n", getenv("PATH...
分类:
其他好文 时间:
2015-11-29 22:44:26
阅读次数:
312
1.冲突的情况,提示如下信息:error: Your local changes to 'c/environ.c' would be overwritten by merge. Aborting.Please, commit your changes or stash them before yo....
分类:
其他好文 时间:
2015-11-23 16:42:08
阅读次数:
184
Python 实现简单 Web 服务器最近有个需求,就是要创建一个简到要多简单就有多简单的web服务器,目的就是需要一个后台进程用来接收请求然后处理并返回结果,因此就想到了使用python来实现。首先创建一个myapp.py文件,其中定义了一个方法,所有的请求都会经过此方法,可以在此方法里处理传递的url和参数,并返回结果。def myapp(environ, start_response):...
分类:
编程语言 时间:
2015-11-20 12:47:54
阅读次数:
174
attr:进程的属性cmdline:启动进程时执行的命令cwd:指向进程当前工作目录的软链ll cwd可知是个软连接。environ:进程执行时使用的环境变量,文件内容使用null字节('\0')分隔,然后以null字节结束。因此获取进程使用的环境变量使用如下:(cat /proc/pid/envi...
分类:
系统相关 时间:
2015-11-20 12:46:40
阅读次数:
214
WSGI:Web Server Gateway Interface 只要求Web开发者实现一个函数,就可以响应HTTP请求。# hello.pydef application(environ, start_response): start_response('200 OK', [('Cont...
分类:
编程语言 时间:
2015-10-26 18:31:48
阅读次数:
184
启动新进程 stdlib.hintsystem(const char *string)whichequals to “sh -c string”替换进程映像unistd.hchar**environ;intexecl(const char *path, const char *arg0, ...(c...
分类:
系统相关 时间:
2015-10-21 00:07:51
阅读次数:
251
在manage中
os.environ.setdefault("DJANGO_SETTINGS_MODULE",?"fuerdai.settings")?
#?选择使用哪个配置文件
#???????????????????????
from?django.core.management?import?execute_from_command_line...
分类:
其他好文 时间:
2015-10-14 12:44:06
阅读次数:
110
这一章的学习让我了解到进程典型存储空间环境变量和命令行参数是如何传递给进程的进程正常终止的5种形式和异常终止的3种形式如何动态分配给进程额外的存储空间setjmp和longjmp函数及它们与栈的交互,以及对auto register volatile static global 5种类型变量的状态影...
分类:
其他好文 时间:
2015-10-07 00:59:35
阅读次数:
241
1,www.python.org下载Python-2.7.10.tgz安装2,tab.py#!/usr/bin/envpython#pythonstartupfileimportsysimportreadlineimportrlcompleterimportatexitimportos#tabcompletionreadline.parse_and_bind(‘tab:complete‘)#historyfilehistfile=os.path.join(os.environ[‘HOME‘],‘...
分类:
编程语言 时间:
2015-09-27 06:28:38
阅读次数:
167