码迷,mamicode.com
首页 > 其他好文 > 详细

解释器文件

时间:2015-06-25 14:02:27      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

所有的UNIX系统都支持解释器文件,这种文件是文本文件,其起始行的形式是:

#! pathname [ optional-argument ]

常见的解释器文件以下列行开始:

#! /bin/sh

pathname通常是绝对路径名,对它不进行什么特殊的处理。内核调用exec函数的进程实际执行的并不是该解释器文件,

而是该解释器文件的第一行中pathname所指定的文件。一定要将解释器文件(文本文件,它以#!开头)和解释器(由该

解释器文件第一行中的pathname指定区分开来)

下面调用exec执行一个解释器文件。

ptarg:

 

[cpp] view plaincopy技术分享技术分享
 
  1. #include <stdio.h>  
  2. int main(int argc, char* argv[]){  
  3.         int i;  
  4.         for(i=0; i<argc; i++){  
  5.                 printf("%s ",argv[i]);  
  6.         }  
  7.         printf("\n");  
  8.         return 0;  
  9. }  

exec:

 

 

[cpp] view plaincopy技术分享技术分享
 
  1. #include <stdio.h>  
  2. #include <sys/wait.h>  
  3. #include <unistd.h>  
  4.   
  5. int main(void){  
  6.         pid_t pid;  
  7.   
  8.         if((pid=fork())<0){  
  9.                 perror("fork");  
  10.                 return -1;  
  11.         }else if(pid == 0){  
  12.                 if(execl("/home/yan/apue/ptargshell","ptargshell","myarg1","myarg2",(char*)0)<0){  
  13.                         perror("execl");  
  14.                         return -1;  
  15.                 }  
  16.         }  
  17.   
  18.         if(waitpid(pid,NULL,0)<0){  
  19.                 perror("waitpid");  
  20.                 return -1;  
  21.         }  
  22.         return 0;  
  23. }  

ptargshell:

 

 

[cpp] view plaincopy技术分享技术分享
 
  1. #!/home/yan/apue/ptarg foo  

执行结果:

 

yan@yan-vm:~/apue$ ./exec
/home/yan/apue/ptarg foo /home/yan/apue/ptargshell myarg1 myarg2

解释器文件

标签:

原文地址:http://www.cnblogs.com/QingCHOW/p/4599731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!