有没有库函数或者是系统调用用来改变stdin等所关联的文件描述符?
有没有库函数或者是系统调用用来改变stdin等所关联的文件描述符啊? fileno(stdin)的结果总是0, 能改变这个结果吗?比如让fileno(stdin)的结果为…
谁了解putty的 remote-controlled printing怎么设置
我想用putty ssh登录到远程之后 使用本地的打印机 打印远程文件 ,remote-controlled printing 里面的这个选项能完成这个要求嘛 需要怎么设置…
他俩干嘛了?一转身就可以了?
本帖最后由 Horizon2012 于 2011-05-28 10:51 编辑 #include #include#include#include#include#include#define QUENE 10#define PORT 3001#define …
一段shell变量看不懂,求指教
本帖最后由 friskfly 于 2011-05-28 10:13 编辑 阅读linux程序设计第四版的时候 有段shell看不懂 cdttitle=${tmp%%,*} 这段代码里面的变量中{}和%% …
请教关于shell中反引号的问题
各位,我写个一个守护进程的shell,代码如下 for test in $result; do pid=`ps -ef | grep -v 'awk'|awk '/php t.php $test/…
关于linux越界访问的问题,很不理解
例如啊: struct test { int a; int b; }; int main() { struct test a[10]; a.[20].b = 10; printf("%d\n",a[20].b); return 0; } 这段…
想实现参数设置,这样可行通吗?
在我们调试的时候,我们是通过运行文件同时后面带参数,比如test.c/------- 简单的说是argc ,argv来传递参数,然后调用getopt_long函数完成命令参…