This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



pid(n)                                      Tcl Built-In Commands                                     pid(n)



____________________________________________________________________________________________________________

NAME
       pid - Retrieve process identifiers

SYNOPSIS
       pid ?fileId?
____________________________________________________________________________________________________________


DESCRIPTION
       If  the fileId argument is given then it should normally refer to a process pipeline created with the
       open command.  In this case the pid command will return a list whose elements are the process identi-fiers identifiers
       fiers  of all the processes in the pipeline, in order.  The list will be empty if fileId refers to an
       open file that is not a process pipeline.  If no fileId  argument  is  given  then  pid  returns  the
       process  identifier of the current process.  All process identifiers are returned as decimal strings.

EXAMPLE
       Print process information about the processes in a pipeline using the SysV ps program before  reading
       the output of that pipeline:

              set pipeline [open "| zcat somefile.gz | grep foobar | sort -u"]
              # Print process information
              exec ps -fp [pid $pipeline] >@stdout
              # Print a separator and then the output of the pipeline
              puts [string repeat - 70]
              puts [read $pipeline]
              close $pipeline


SEE ALSO
       exec(n), open(n)


KEYWORDS
       file, pipeline, process identifier



Tcl                                                  7.0                                              pid(n)

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation to the Tcl project.
Bug reports
Report bugs in the functionality of the described tool or API to Apple through Bug Reporter and to the Tcl project through their bug reporting page.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...