⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 popen.3

📁 早期freebsd实现
💻 3
字号:
.\" Copyright (c) 1991, 1993.\"	The Regents of the University of California.  All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\"    notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\"    notice, this list of conditions and the following disclaimer in the.\"    documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\"    must display the following acknowledgement:.\"	This product includes software developed by the University of.\"	California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\"    may be used to endorse or promote products derived from this software.\"    without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\"     @(#)popen.3	8.1 (Berkeley) 6/4/93.\".Dd June 4, 1993.Dt POPEN 3.Os.Sh NAME.Nm popen ,.Nm pclose.Nd process.Tn I/O.Sh SYNOPSIS.Fd #include <stdio.h>.Ft FILE *.Fn popen "const char *command" "const char *type".Ft int.Fn pclose "FILE *stream".Sh DESCRIPTIONThe.Fn popenfunction.Dq opensa process by creating a pipe,forking,and invoking the shell.Since a pipe is by definition unidirectional, the.Fa typeargument may specify only reading or writing, not both;the resulting stream is correspondingly read-only or write-only..PpThe.Fa commandargument is a pointer to a null-terminated stringcontaining a shell command line.This command is passed to.Pa /bin/shusing the.Fl cflag; interpretation, if any, is performed by the shell.The.Fa modeargument is a pointer to a null-terminated stringwhich must be either.Ql rfor readingor.Ql wfor writing..PpThe return value from.Fn popenis a normal standard.Tn I/Ostream in all respectssave that it must be closed with.Fn pcloserather than.Fn fclose .Writing to such a streamwrites to the standard input of the command;the command's standard output is the same as that of the process that called.Fn popen ,unless this is altered by the command itself.Conversely, reading from a.Dq popenedstream reads the command's standard output, andthe command's standard input is the same as that of the process that called.Fn popen ..PpNote that output.Fn popenstreams are fully buffered by default..PpThe.Fn pclosefunction waits for the associated process to terminateand returns the exit status of the commandas returned by.Fn wait4 ..Sh RETURN VALUEThe.Fn popenfunction returns.Dv NULLif the.Xr fork 2or.Xr pipe 2calls fail,or if it cannot allocate memory..PpThe.Fn pclosefunctionreturns \-1 if.Fa streamis not associated with a.Dq popenedcommand, if.Fa streamalready.Dq pclosed ,or if.Xr wait4returns an error..Sh ERRORSThe.Fn popenfunction does not reliably set.Va errno ..Sh SEE ALSO.Xr fork 2 ,.Xr sh 1 ,.Xr pipe 2 ,.Xr wait4 2 ,.Xr fflush 3 ,.Xr fclose 3 ,.Xr fopen 3 ,.Xr stdio 3 ,.Xr system 3.Sh BUGSSince the standard input of a command opened for readingshares its seek offset with the process that called.Fn popen ,if the original process has done a buffered read,the command's input position may not be as expected.Similarly, the output from a command opened for writingmay become intermingled with that of the original process.The latter can be avoided by calling.Xr fflush 3before.Fn popen ..PpFailure to execute the shellis indistinguishable from the shell's failure to execute command,or an immediate exit of the command.The only hint is an exit status of 127..PpThe.Fn popenargumentalways calls.Xr sh ,never calls.Xr csh ..Sh HISTORYA.Fn popenand a.Fn pclosefunction appeared in.At v7 .

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -