Sponsored Content
Full Discussion: login problem at work help!
Top Forums UNIX for Dummies Questions & Answers login problem at work help! Post 57010 by Jeremy Johnson on Friday 15th of October 2004 12:00:47 PM
Old 10-15-2004
Yuppers your are right. Sorry was just happy to get in and wasn't thinking .
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

login problem

. HP-UX HPUX11I B.11.11 U 9000/778 (tb) telnetd: /usr/bin/login: No such file or directory Ok im currently logged into the machine and dont plan on logging out i found this out when i went to open another session on the box and was prompted with the above, i do not have a backup of the... (4 Replies)
Discussion started by: bbutler3295
4 Replies

2. Shell Programming and Scripting

placeing all work in a file form login

hai i want to place every work done by me in a file form login to logout. ex:- login : abc password: xxxx $pwd /home/abc $ls -l list of files in dir $logout now i want to place all commands given by me in a file for later reference. (5 Replies)
Discussion started by: g_s_r_c
5 Replies

3. SCO

Problem when login

When I login on consola as root I have problem. I typed on login: root password:rootpassword then promt login: problem is for other users In sigle user mode I can login as root. Please halp me (1 Reply)
Discussion started by: draganmi
1 Replies

4. Solaris

Problem getting SUN trunking to work

Hi all, I am trying to setup SUN trunking per the instructions in the SUN Trunking 1.3 Installation and User's Guide. Dated June - 2007. I am setting it up in a test environment. Pretty simple test bed. 2 Sun V490s connected to a Catalyst 6500 via fiber NICs. 2 NIC's in each 490. Each is a... (9 Replies)
Discussion started by: bruhnf
9 Replies

5. AIX

user login problem & Files listing problem.

1) when user login to the server the session got colosed. How will resolve? 2) While firing the command ls -l we are not able to see the any files in the director. but over all view the file system using the command df -g it is showing 91% used. what will be the problem? Thanks in advance. (1 Reply)
Discussion started by: pernasivam
1 Replies

6. Red Hat

Login problem

Hi Everybody, I am getting following error when am trying to login to my oracle user. su: warning: cannot change directory to /bin/bash: Not a directory -sh: /bin/bash/.profile: Not a directory -bash-3.1$ Please help me how to avoid this message and how to login with normal user login... (1 Reply)
Discussion started by: mastansaheb
1 Replies

7. SuSE

SSH issue - can't get password less login to work

Hello, I can't seem to get the password less login to work on one of my SLES 11 servers. My ssh agent lets me login to all my other servers, which are Solaris 10, RHEL 5, and SLES 11 servers. Some servers mount my home directory and others don't. The server that I'm having an issue with doesn't... (7 Replies)
Discussion started by: bitlord
7 Replies

8. Shell Programming and Scripting

Problem getting sed to work with variables

Hello, I am processing text files looking for a string and replacing the first occurrence of the string with something else. For the text,id Name 1 methyl-(2-methylpropoxy)-oxoammonium 2 N-amino-N-(methylamino)-2-nitrosoethanamine 3 3-methoxy-3-methyloxazolidin-3-ium... (12 Replies)
Discussion started by: LMHmedchem
12 Replies
Tcl_GetOpenFile(3)					      Tcl Library Procedures						Tcl_GetOpenFile(3)

__________________________________________________________________________________________________________________________________________________

NAME
Tcl_GetOpenFile - Get a standard IO File * handle from a channel. (Unix only) SYNOPSIS
#include <tcl.h> int Tcl_GetOpenFile(interp, string, write, checkUsage, filePtr) ARGUMENTS
Tcl_Interp *interp (in) Tcl interpreter from which file handle is to be obtained. CONST char *string (in) String identifying channel, such as stdin or file4. int write (in) Non-zero means the file will be used for writing, zero means it will be used for reading. int checkUsage (in) If non-zero, then an error will be generated if the file wasn't opened for the access indicated by write. ClientData *filePtr (out) Points to word in which to store pointer to FILE structure for the file given by string. _________________________________________________________________ DESCRIPTION
Tcl_GetOpenFile takes as argument a file identifier of the form returned by the open command and returns at *filePtr a pointer to the FILE structure for the file. The write argument indicates whether the FILE pointer will be used for reading or writing. In some cases, such as a channel that connects to a pipeline of subprocesses, different FILE pointers will be returned for reading and writing. Tcl_GetOpenFile normally returns TCL_OK. If an error occurs in Tcl_GetOpenFile (e.g. string didn't make any sense or checkUsage was set and the file wasn't opened for the access specified by write) then TCL_ERROR is returned and the interpreter's result will contain an error message. In the current implementation checkUsage is ignored and consistency checks are always performed. | Note that this interface is only supported on the Unix platform. KEYWORDS
channel, file handle, permissions, pipeline, read, write Tcl 8.0 Tcl_GetOpenFile(3)
All times are GMT -4. The time now is 11:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy