Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dump(3tk) [debian man page]

dump(3tk)																 dump(3tk)

NAME
dump - Dump information about Tcl interpreter in TkCon SYNOPSIS
dump method ?-nocomplain? ?-filter pattern? ?--? pattern ?pattern ...? DESCRIPTION
The dump command provides a way for the user to spit out state information about the interpreter in a Tcl readable (and human readable) form. It takes the general form: dump method ?-nocomplain? ?-filter pattern? ?--? pattern ?pattern ...? The patterns represent glob-style patterns (as in string match pattern $str). -nocomplain will prevent dump from throwing an error if no items matched the pattern. -filter is interpreted as appropriate for the method. The various methods are: dump command args Outputs one or more commands. dump procedure args Outputs one or more procs in sourceable form. dump variable args Outputs the values of variables in sourceable form. Recognizes nested arrays. The -filter pattern is used as to filter array ele- ment names and is interepreted as a glob pattern (defaults to {*}). It is passed down for nested arrays. dump widget args Outputs one or more widgets by giving their configuration options. The -filter pattern is used as to filter the config options and is interpreted as a case insensitive regexp pattern (defaults to {.*}). SEE ALSO
idebug(3tk), observe(3tk), tkcon(1), tkcon(3tk), tkconrc(5) KEYWORDS
Tk, console, dump COPYRIGHT
Copyright (c) Jeffrey Hobbs <jeff at hobbs.org> TkCon 2.5 dump(3tk)

Check Out this Related Man Page

dump(n) 																   dump(n)

__________________________________________________________________________________________________________________________________________________

NAME
dump - Dump information about Tcl interpreter in TkCon SYNOPSIS
dump method ?-nocomplain? ?-filter pattern? ?--? pattern ?pattern ...? _________________________________________________________________ DESCRIPTION
The dump command provides a way for the user to spit out state information about the interpreter in a Tcl readable (and human readable) form. It takes the general form: dump method ?-nocomplain? ?-filter pattern? ?--? pattern ?pattern ...? The patterns represent glob-style patterns (as in string match pattern $str). -nocomplain will prevent dump from throwing an error if no items matched the pattern. -filter is interpreted as appropriate for the method. The various methods are: dump command args Outputs one or more commands. dump procedure args Outputs one or more procs in sourceable form. dump variable args Outputs the values of variables in sourceable form. Recognizes nested arrays. The -filter pattern is used as to filter array ele- ment names and is interepreted as a glob pattern (defaults to {*}). It is passed down for nested arrays. dump widget args Outputs one or more widgets by giving their configuration options. The -filter pattern is used as to filter the config options and is interpreted as a case insensitive regexp pattern (defaults to {.*}). SEE ALSO
idebug(n), observe(n), tkcon(1), tkcon(n), tkconrc(5) KEYWORDS
Tk, console, dump COPYRIGHT
Copyright (c) Jeffrey Hobbs <jeff at hobbs.org> TkCon 2.5 dump(n)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Dump program variables

Hi, Wish if could provide some clues. How do I dump all the C program variables(global) into say a file with their names and the values. So that when I restart the application again I could use this same file for reinitializing.Is this possible? Thanks, Reji (1 Reply)
Discussion started by: rejise
1 Replies

2. UNIX for Dummies Questions & Answers

sexist filter

Many years ago while I was in college, there was a 'sexist' filter on our 3B2 to change words with sexual content to a more political correct form. eg: 'mailman' to 'postal carrier', 'policeman' to 'police officer' , etc. I believe it was part of the DWB, but I'm not sure. Can anyone point me to a... (5 Replies)
Discussion started by: Quintab
5 Replies

3. Shell Programming and Scripting

Searching for a patter

I am trying to search for a pattern as follow configuration ... of ... is where ... could be any name (so ... represent the don't CARE pattern) i do the following sed 's/configuration ... of ... is/ somethingelse/' I was wondering how I could represent the don't care pattern in the... (2 Replies)
Discussion started by: ROOZ
2 Replies

4. Shell Programming and Scripting

Copy large dump file

Hi Experts.. Could anyone please let me know the easier way to copy large dump of files from one server to another. I am trying to copy a set of dump files on two different servers placed in different geographic locations.. Though there are other factors such as latency, etc., slowing up the... (4 Replies)
Discussion started by: ganga.dharan
4 Replies

5. UNIX for Dummies Questions & Answers

Count of matched pattern occurance

In a file a pattern is occured many times randomly. Even it may appear more then once in the same line too. How i can get the number of times that pattern appeared in the file? let the file name is abc.txt and the pattern is "xyz". I used the following code: grep -ic "xyz" abc.txt but it is... (3 Replies)
Discussion started by: palash2k
3 Replies

6. UNIX for Dummies Questions & Answers

BASH, HASH and AWK

Hi, I am working on this idea that I want to process some information from a command dump. Using the dump I will search for a string. If it finds the string, it must post a different/associated string to output/logfile. Example: 'Find "cookie jar"' then 'echo "carpool/tomorrow" >... (2 Replies)
Discussion started by: Corpsehy
2 Replies

7. Shell Programming and Scripting

How to filter non matched ones

INPUT1 a1tab234tabAQW a2tab345tabQWE a3tab567tab124 a4tab236tab890 INPUT2 a1tab234tabAQW a4tab236tab890 OUTPUT a2tab345tabQWE a3tab567tab124 (6 Replies)
Discussion started by: repinementer
6 Replies

8. Shell Programming and Scripting

sed help - nested pattern

Hello, I am very new to Unix and using sed so I'm struggling a little bit with this command and was hoping someone could help me out. I want to find a nested pattern in a file and replace some text in that file with text from another file. For example, in file one I have something like... (11 Replies)
Discussion started by: planetary12
11 Replies

9. UNIX for Dummies Questions & Answers

dump display to a file

Hi: I want to dump whatever command I type on the terminal + whatever is the result of that command's execution to one file. Is it possible in unix? Rgds, Indu (3 Replies)
Discussion started by: indu_shr
3 Replies

10. Shell Programming and Scripting

AWK pattern matching on loop

Hi, I am still a beginner on shell scripting so please bear with me. What i am trying to do is filter my logfile based on some ID on field 24 which is defined in array. The filter result output will be moved to my log folder with the same name. The problem is when not using loop, this command... (2 Replies)
Discussion started by: howielim
2 Replies

11. Solaris

core dump

Hi guys, just want to know which core file pattern is best to set for core dumps: 1) per-process file name pattern or 2) global file name pattern. I will really appreciate an explanation why the chosen one is better. Thanks a lot guys. (2 Replies)
Discussion started by: cjashu
2 Replies

12. Shell Programming and Scripting

Find patterns and filter the text

I need to filter the text in between two patterns and output that to a different file. Please help me how to do it. Ex: ............. <some random text> ............. Pattern_1 <Few lines that need to be output to different file> Pattern_2 ................ ............... <more text in... (4 Replies)
Discussion started by: metturr
4 Replies

13. Shell Programming and Scripting

Compare pattern in variable

How to check if pattern is matching in variable or not. I want to check file name in variable with the pattern. Eg: file_name="AB1000.csv" Check for below patterns pattern1 = AB??? pattern2 = abc??* if file_name == <patten1> then ... elif file_name == <pattern2> ---... (4 Replies)
Discussion started by: vegasluxor
4 Replies

14. Shell Programming and Scripting

How to remove content present in between specific pattern ?

Hi, I have a file with following pattern. We are looking to filter out only specific content from this file. sample BLAdmins Server.* LinuxAdmins Server.* Policy Name: Recommended Default ACL Policy Everyone ACLPushJob.Read Everyone ACLTemplate.Read Everyone ... (9 Replies)
Discussion started by: Litu19
9 Replies

15. AIX

AIX system dump analysis

dear all, i have p770 aix6.1 last week, the host reboot suddenly with dump. but i don't know how to analyze the dump. I posted kdb details in the attachment. please anybody help me. #>kdb vmcore.0 /unix vmcore.0 mapped from @ 700000000000000 to @ 7000001c72c0908 START ... (13 Replies)
Discussion started by: tomato00
13 Replies