- 论坛徽章:
- 0
|
- #include "fun.h"
- #define PAGER "${PAGER:-more}" /* */
- int main ( int argc, char *argv[] )
- {
- char line[MAXLINE];
- FILE *fpin, *fpout;
- printf("%s",PAGER);
- if ( argc != 2 )
- {
- err_quit("usage: %s <pathname>", argv[0]);
- }
- if ( (fpin = popen(argv[1], "r")) == NULL )
- {
- err_sys("can't open %s",argv[1]);
- }
- if ( (fpout = popen(PAGER, "w")) == NULL )
- {
- err_sys("popen error");
- }
- while ( fgets(line, MAXLINE,fpin) != NULL )
- {
- if ( fputs(line,fpout) == EOF )
- {
- err_sys("fputs error to pipe");
- }
- }
- if ( ferror(fpin))
- {
- err_sys("fgets error");
- }
- if ( pclose(fpout) == -1 )
- {
- err_sys("pclose error");
- }
- exit(0);
- } /* ---------- end of function main ---------- */
复制代码 我在 执行过程中总是 tmp/popen ./Makefile
sh: ./Makefile: Permission denied |
|