smit.script


 
Thread Tools
Contact Us Forum Support Area for Unregistered Users & Account Problems smit.script
# 1  
Old 09-16-2007
smit.script

what is the smit.script file and does it ever need to be cleaned up or deleted
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

smit see comand performed ??

i in smit , press F6 , smit fs , Change / Show Characteristics of an Enhanced Journaled File System then F6 to see the comand , how can i see the command performed ?? x() { │ │ LIST= ... (5 Replies)
Discussion started by: prpkrk
5 Replies

2. AIX

adding users via smit

I apologize if this is a simple/stupid question. When I add users in smit as root, many(most) of the fields are automatically popluated with some basic default values. Some other admins here have access to create users via sudo, however when they create users (sudo smit users), the user gets... (3 Replies)
Discussion started by: mshilling
3 Replies

3. AIX

Doubts on SMIT

Hi All, Have a few doubts on SMIT. 1. Is SMIT available in seperate packages if it is not installed by default with the AIX ? 2. how to check the smit version.. is there anything of that kind ? 3. what is the effect of smit.cat file ? 4. What are all the files present in /etc/objrepos/... (4 Replies)
Discussion started by: BalajiUthira
4 Replies

4. AIX

SMIT Default Commands

I was trying to do a search for this but I guess I wasn't using the right terms. I just installed AIX 6.1 on a new P7 server. The OS seemed to be a success, however now, when I go to 'smitty' I can't use the default commands liek F3, F4. Instead I have to type esc+3 or esc+4. Anyone seen this... (2 Replies)
Discussion started by: bbbngowc
2 Replies

5. Shell Programming and Scripting

Using expect script with AIX's SMIT in cron

My searches turned up nothing relevant, so I apologize if this has already been looked at. I am trying to run an expect script from a Solaris machine, that ssh's into an AIX machine, and interacts with a SMIT created menu system that runs a few backups for me. The expect script runs fine when... (0 Replies)
Discussion started by: Mariognarly
0 Replies

6. Shell Programming and Scripting

How to realize SMIT on linux OS

Hi everybody, I want to know that how to realize the SMIT(The System Management Interface Tool ) of AIX on LINUX OS. would you tell some examples of SMIT or other useful information about it ? Thanks a lot (2 Replies)
Discussion started by: addictlinux
2 Replies

7. AIX

SMIT on Linux

Hi All, I have a Linux system (RHEL 5). I want to install SMIT of AIX on it. Is it possible? if yes, how it can be done? Appreciate any help from you. Amol. (4 Replies)
Discussion started by: Amol21
4 Replies

8. AIX

Smit logs

Hi everyone, I'm trying to keep my smit logs in other directory diferent than the user's home. I know with -l and -s you can change this settings but I'm wondering if there is any environment value that I can set. It can be done using alias too ... Thanx. (3 Replies)
Discussion started by: mfons
3 Replies

9. UNIX for Dummies Questions & Answers

smit.script

Can someone tell me what the smit.script file does? I'm having a problem with one of my boxes pointing at the wrong webserver. This is the only place I can find the wrong address, but I'm not sure what the file does so I'm afraid to change it. (1 Reply)
Discussion started by: Barb
1 Replies

10. AIX

How to invoke SMIT GUI

Hi All I am using AIX 5.1, i have Cygwin-X installed on my Windows XP Pro desktop, I had started the X-Windows Session and logged into the remote AIX server via telnet. When i issue the command smit i only get the command line version of the SMIT, How can i invoke the SMIT GUI version ? ... (4 Replies)
Discussion started by: kswaraj
4 Replies
Login or Register to Ask a Question
Tcl_AllowExceptions(3)					      Tcl Library Procedures					    Tcl_AllowExceptions(3)

__________________________________________________________________________________________________________________________________________________

NAME
Tcl_AllowExceptions - allow all exceptions in next script evaluation SYNOPSIS
#include <tcl.h> Tcl_AllowExceptions(interp) ARGUMENTS
Tcl_Interp *interp (in) Interpreter in which script will be evaluated. _________________________________________________________________ DESCRIPTION
If a script is evaluated at top-level (i.e. no other scripts are pending evaluation when the script is invoked), and if the script termi- nates with a completion code other than TCL_OK, TCL_ERROR or TCL_RETURN, then Tcl normally converts this into a TCL_ERROR return with an appropriate message. The particular script evaluation procedures of Tcl that act in the manner are Tcl_EvalObjEx, Tcl_EvalObjv, Tcl_Eval, Tcl_EvalEx, Tcl_GlobalEval, Tcl_GlobalEvalObj, Tcl_VarEval and Tcl_VarEvalVA. However, if Tcl_AllowExceptions is invoked immediately before calling one of those a procedures, then arbitrary completion codes are per- mitted from the script, and they are returned without modification. This is useful in cases where the caller can deal with exceptions such as TCL_BREAK or TCL_CONTINUE in a meaningful way. KEYWORDS
continue, break, exception, interpreter Tcl 7.4 Tcl_AllowExceptions(3)