Sponsored Content
Operating Systems Solaris How to search for the sessions that have a certain environment variable set? Post 302956862 by ejianu on Monday 5th of October 2015 04:26:11 AM
Old 10-05-2015
I have exported the DISPLAY variable but for some reason it doesn't show up.

Code:
user@machine:/home/user>env
_=/usr/bin/env
SSH_TTY=/dev/pts/1
PATH=/usr/local/bin:/usr/bin:/bin
EDITOR=vi
LOGNAME=user
MAIL=/usr/mail/user
HOSTNAME=machine
USER=user
DISPLAY=10.5.205.232:236
SHELL=/usr/bin/ksh
HOME=/home/user
SSH_CONNECTION=129.121.221.47 53939 10.13.22.201 22
SSH_CLIENT=129.121.221.47 53939 22
TERM=xterm
PWD=/home/user
TZ=US/Central
ENV=/home/user/.kshrc
user@machine:/home/user>pargs -e $$
2925:   -ksh
envp[0]: USER=user
envp[1]: LOGNAME=user
envp[2]: HOME=/home/user
envp[3]: PATH=/usr/bin:/bin
envp[4]: MAIL=/var/mail//user
envp[5]: SHELL=/usr/bin/ksh
envp[6]: TZ=US/Central
envp[7]: SSH_CLIENT=129.121.221.47 53939 22
envp[8]: SSH_CONNECTION=129.121.221.47 53939 10.13.22.201 22
envp[9]: SSH_TTY=/dev/pts/1
envp[10]: TERM=xterm

 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How does the PATH and MANPATH environment variable get set?

Hi, How does the PATH and MANPATH environment variable get set? I want to add "/opt/SUNWspro/bin" to the search path for all the users. Where can I access this variable. I know in my home directory, depend on which shell I use, there are files such as .profile and .cshrc which I can edit to... (3 Replies)
Discussion started by: vtran4270
3 Replies

2. UNIX for Advanced & Expert Users

set environment variable?

Installed a program, need to set the system up so that when the executable is entered, it finds the path to the executable. In Windows, set under system properties, advanced, environmental variables. How do I do this with Unix? Specifically using Solaris 9. I have tried: env... (3 Replies)
Discussion started by: kohoutek
3 Replies

3. UNIX for Advanced & Expert Users

how to set the environment variable at run time

hi, I have one environment variable like path in my system.But in my program i need to change that path .suppose it has a value "config" now i need to chage it as "config1" or something else.i need to use that variable for complete project.It means at first it will use the old path but after... (4 Replies)
Discussion started by: sada@123
4 Replies

4. Shell Programming and Scripting

problem in getting the path of environment variable set in bashrc in my shell script

hi all i have joined new to the group. i have set an variable in my bashrc file. .bashrc PROGHOME=/home/braf/braf/prog export PROGHOME but while using it in my shell script its path is not taken and i had to explicitly give the export command to set the path. in my script... (8 Replies)
Discussion started by: krithika
8 Replies

5. Linux

How do i set environment variable

Hi, I am quite new to Linux. And I have doubt how to set new environment variable with value to a C executable. Let say I have a environment variable $Hack ; I would like to load a value for this variable; so that when the C executable is executed, the $Hack would set the variable value. ... (4 Replies)
Discussion started by: ahjiefreak
4 Replies

6. Solaris

set environment variable?

I am working with solaris 9 sunBlade150 Box. I Installed a program, need to set the environment variable so that when the executable is entered,it finds the path to the executable. The documentation for the software says: Set the appropriate environment variable: Connect to server failed;... (8 Replies)
Discussion started by: smartgupta
8 Replies

7. UNIX for Dummies Questions & Answers

ORACLE_HOME environment variable not set!

hi, i am new to perl: os : Linux i wrote simple perl script to select from table i am getting this error and how to set ORACLE_HOME environment variable : script: #!usr/bin/perl use DBI; use Mail::Sendmail; #use Date::Calc; use MIME::QuotedPrint; use HTML::Entities; use POSIX... (2 Replies)
Discussion started by: prakash.gr
2 Replies

8. Shell Programming and Scripting

Set Environment variable from another file

Hi, i have the following env variable. currently i am exporting variable in the same script file. but i need this is in a text file and the scripts need to export this variable from the text file. can you please suggest me. is it possible. export... (6 Replies)
Discussion started by: rsivasan
6 Replies

9. Shell Programming and Scripting

Help needed with shell script to search and replace a set of strings among the set of files

Hi, I am looking for a shell script which serves the below purpose. Please find below the algorithm for the same and any help on this would be highly appreciated. 1)set of strings need to be replaced among set of files(directory may contain different types of files) 2)It should search for... (10 Replies)
Discussion started by: Amulya
10 Replies

10. UNIX for Beginners Questions & Answers

What will be the effect of environment variable, when mulitple sessions are opened by same login?

Hello, What will be the effect of environment variable, when mulitple sessions are opened by same login? Following code snippet is part of a shell script. Environment : HP-UX B.11.31 U ia64 For Example EXECUTION_DIR=`pwd`/ EXECUTION_DIR_RT=${EXECUTION_DIR}RT/ export... (4 Replies)
Discussion started by: Siva SQL
4 Replies
last(1) 						      General Commands Manual							   last(1)

Name
       last - indicate last logins of users and teletypes

Syntax
       last [-N] [name...] [tty...]

Description
       The  command  looks  back in the file, which records all logins and logouts, for information about a user, a teletype or any group of users
       and teletypes.  Arguments specify names of users or teletypes of interest.  Names of teletypes can be  given  fully  or	abbreviated.   For
       example `last 0' is the same as `last tty0'.

       If  multiple  arguments are given, the information that applies to any of the arguments is printed.  For example, `last root console' lists
       all of "root's" sessions as well as all sessions on the console terminal.

       The command prints the sessions of the specified users and teletypes, most recent first, indicating the times at which the  session  began,
       the  duration  of  the  session, and the teletype on which the session took place.  If the session is ongoing or was cut short by a reboot,
       indicates that this is so.

       The pseudo-user reboot logs in at reboots of the system.  Therefore, the following example gives an indication of mean time between reboot:
       last reboot

       The command with no arguments prints a record of all logins and logouts, in reverse order.

       If is interrupted, it indicates how far the search has progressed in If interrupted with a quit signal (generated by a <CTRL/E>)  indicates
       how far the search has progressed so far, and the search continues.

Options
       -N   Limits the number of output lines to the specified number.

Files
       /usr/adm/wtmp
			   login data base

       /usr/adm/shutdownlog
			   records that shutdowns occurred and why

See Also
       wtmp(5), ac(8), lastcomm(1)

																	   last(1)
All times are GMT -4. The time now is 10:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy