environment checkout procedure


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting environment checkout procedure
# 1  
Old 07-20-2009
environment checkout procedure

Hi,

Can anybody explain what is env checkout procedure and how to write a procedure for that?

Thanks and Regards
Venkat
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Problems with SVN checkout

I am trying to figure out why, when I checkout this repository, I am not receiving a .svn folder. I have two machines. On one machine if I checkout the repository it checks out with a .svn folder and on the other machine I do the same and it: requires a password and does not give me a .svn folder.... (1 Reply)
Discussion started by: Circuits
1 Replies

2. UNIX for Advanced & Expert Users

CVS: can not checkout a newly added file

My project is on solaris 10 using cvs 1.12.13. A team member has added a new file to the repo using the add command followed by commit. When another team member executes the status command in the directory containing the new file they do not get notifiction that there is a file that needs to be... (0 Replies)
Discussion started by: twk
0 Replies

3. Shell Programming and Scripting

Invoke Procedure Help

Hello unix.com users, I reached a dead end with a procedure. My files: x.pl #!/usr/bin/perl use Net::FTP; my $host = $ARGV; my $user = $ARGV; my $pass = $ARGV || ""; my $port = "21"; $ftp=Net::FTP->new("$host", Port=>"$port", Timeout => 5) or die("couldn't connect to host:" .... (2 Replies)
Discussion started by: galford
2 Replies

4. Shell Programming and Scripting

moves checkout files to local system

I am using my script which generally checkout the repository.Is there any coomand which can help me to checkout the repository not on that svn server while it moves it to your local system at the desired location. (0 Replies)
Discussion started by: rohit22hamirpur
0 Replies

5. Solaris

Help with Booting procedure

Hello guys, I am a newbie to solaris 10. Recently I was going through booting procedure of solaris 10 on sparc machines, there I was not clear with kernel phase because I read like /etc/system file is read by kernel even before root filesystem is loaded, How is it possible?? Please Help me... (4 Replies)
Discussion started by: praveen12
4 Replies

6. Shell Programming and Scripting

How to checkout from SVN using Terminal in Mac OS X?

Hi, I am new for SVN. Earlier I have been using CVS. When I checkout the code from SVN using Eclipse, the size of the source code checked out is 612MB. But when I try to checkout from terminal, from my 5.8 branch , the checked out source code's size is only 312.1 MB. Can anyone tell me... (0 Replies)
Discussion started by: Afreen
0 Replies

7. UNIX for Advanced & Expert Users

svn checkout failes to add corret EOL on windows machine

Hello, We are using svn client version 1.5.6. I was able to setup svn server on linux server successfully. The server is working fine for linux machies. I.e. if they checkout/checkin source code, the line endings are unix style. The problem comes when the source is checkouted on Windows machine.... (0 Replies)
Discussion started by: +Yan
0 Replies

8. Shell Programming and Scripting

Recursively go thorough subdirectories and checkout files

Hi, I would need to go through all the subdirectories, find each file and would need to check them out(using clearcase, which I know). But could you please help me how to find all the files under all subdirectories.. there could be multiple directories and subdirs... Sas (3 Replies)
Discussion started by: shajiasalim
3 Replies

9. UNIX for Advanced & Expert Users

Reset environment - ".. /etc/.environment dev_env"

I have been resently working on some ksh script. One of the line in the file writes: .. /etc/.environment dev_env I can not understand what this mean, all I know is .environment is unix system environment file. Is ".." a command? If some one can give me some clue where can I find information... (7 Replies)
Discussion started by: zzwu3591
7 Replies

10. Solaris

Back-up Procedure

Hi Friendz, How to backup 40GB of data to a DLT TAPE device? How am i going to configure my backup device? Is it possible to backup more than 40GB of data to a TAPE? regards, daemons_advoc8 (1 Reply)
Discussion started by: daemons_advoc8
1 Replies
Login or Register to Ask a Question
XtSetLanguageProc(3)						   XT FUNCTIONS 					      XtSetLanguageProc(3)

NAME
XtSetLanguageProc - set the language procedure SYNTAX
Widget XtSetLanguageProc(XtAppContext app_context, XtLanguageProc proc, XtPointer client_data); ARGUMENTS
app_context Specifies the application context in which the language procedure is to be used, or NULL. proc Specifies the language procedure, or NULL. client_data Specifies additional client data to be passed to the language procedure when it is called. DESCRIPTION
XtSetLanguageProc sets the language procedure that will be called from XtDisplayInitialize for all subsequent Displays initialized in the specified application context. If app_context is NULL, the specified language procedure is registered in all application contexts created by the calling process, including any future application contexts that may be created. If proc is NULL a default language procedure is reg- istered. XtSetLanguageProc returns the previously registered language procedure. If a language procedure has not yet been registered, the return value is unspecified but if this return value is used in a subsequent call to XtSetLanguageProc, it will cause the default language procedure to be registered. The default language procedure does the following: o Sets the locale according to the environment. On ANSI C-based systems this is done by calling setlocale( LC_ALL, language ). If an error is encountered a warning message is issued with XtWarning. o Calls XSupportsLocale to verify that the current locale is supported. If the locale is not supported, a warning message is issued with XtWarning and the locale is set to ``C''. o Calls XSetLocaleModifiers specifying the empty string. o Returns the value of the current locale. On ANSI C-based systems this is the return value from a final call to setlocale( LC_ALL, NULL ). A client wishing to use this mechanism to establish locale can do so by calling XtSetLanguageProc prior to XtDisplayInitialize. SEE ALSO
X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface X Version 11 libXt 1.0.5 XtSetLanguageProc(3)