excel函数linux改变权限,[转]linux C使用execl函数重定向问题(dup和dup2函数的作用)

来源:http://yonghan.blog.sohu.com/94105721.html

dup和dup2函数的作用

#include

int dup( int filedes );

int dup2( int filedes, int filedes2 );

//新文件描述符复制filedes,并且将filedes2值作为新文件描述符的值

//dup函数的作用:复制一个现有的句柄,产生一个与“源句柄特性”完全一样的新句柄

// (也即生成一个新的句柄号,并关联到同一个设备,而且它返回的一定是当前可用的

// 文件描述符中的最小数值)

//dup2函数的作用:复制一个现有的句柄到另一个句柄上,目标句柄的特性与“源句柄特性”

// 完全一样(也即首先关闭目标句柄,与设备断连,接着从源句柄完全拷贝复制到目标句柄)

// 这些函数返回的新文件描述符与参数filedes2共享同一个文件表项。

//dup和dup2都是系统服务,window平台对应DuplicateHandle函数

/* DUP.C: This program uses the variable old to save

* the original stdout. It then opens a new file named

* new and forces stdout to refer to it. Finally, it

* restores stdout to its original state.

*/

#include

#include

#include

void main( void )

{

int old;

FILE *new;

old = _dup( 1 ); /* "old" now refers to "stdout" */

/* Note: file handle 1 == "stdout" */

if( old == -1 )

{

perror( "_dup( 1 ) failure" );

exit( 1 );

}

write( old, "This goes to stdout first\r\n", 27 );

if( ( new = fopen( "data", "w" ) ) == NULL )

{

puts( "Can't open file 'data'\n" );

exit( 1 );

}

/* stdout now refers to file "data" */

if( -1 == _dup2( _fileno( new ), 1 ) )

{

perror( "Can't _dup2 stdout" );

exit( 1 );

}

puts( "This goes to file 'data'\r\n" );

/* Flush stdout stream buffer so it goes to correct file */

fflush( stdout );

fclose( new );

/* Restore original stdout */

_dup2( old, 1 );

puts( "This goes to stdout\n" );

puts( "The file 'data' contains:" );

system( "type data" );

}

自己的实例:

int old;

FILE *new;

old = dup( 1 );

if( ( new = fopen( "/home/hy/0516/ilm/ilmsched/aaa.log", "w" ) )

== NULL )

{

puts( "Can't open file 'data'\n" );

exit( -1 );

}

if( -1 == dup2( fileno( new ), 1 ) )

{

perror( "Can't _dup2 stdout" );

exit( 1 );

}

execl( "/home/hy/0516/ilm/ilmassess/ilmassess", "ilmassess",

"/home/hy",

"-mode", "both",

"-logdir", "/home/hy/ilm/ilmassess/", "-logfile",

"ilmassess.log", "-errfile",

"ilmassess_err.log", "-parfile",

"/home/hy/0516/ilm/ilmassess/ilmassess_option",NULL);

fflush( stdout );

fclose( new );

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值