gcore
Generate a core file for a running process
see also :
gdb
Synopsis
gcore
[-o filename] pid
add an example, a script, a trick and tips
examples
source
echo "Usage: rsc core
[pid]"
else
gcore > /dev/null 2>&1
if [ $? = 0 ]; then
gcore $1
else
PID=$1
description
gcore generates
a core file for the process specified by its process ID,
pid. By default, the core file is written to
core.pid, in the current directory.
-o filename
write core file to
filename instead of core.pid
copying
Copyright © 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission
notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of
this manual under the conditions for verbatim copying, provided
that the entire resulting derived work is distributed under the
terms of a permission notice identical to this one.
Permission is granted to copy and distribute translations of this
manual into another language, under the above conditions for
modified versions, except that this permission notice may be
included in translations approved by the Free Software Foundation
instead of in the original English.
see also
gdb ,
core