Sponsored Content
Full Discussion: Get execute result of su
Top Forums Shell Programming and Scripting Get execute result of su Post 302286825 by rakeshou on Thursday 12th of February 2009 03:11:12 AM
Old 02-12-2009
not tested

try echoing the value like

RETURN_VAL=`su user << EOF
some commands
result=$?
echo $result
EOF`

echo $RETURN_VAL
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need to execute 2 scripts, wait, execute 2 more wait, till end of file

:cool: I need to execute a shell script to do the following: cat a file run two back ground processes using the first two values from the file wait till those background processes finish run two more background processes using the next two values from the file wait till those background... (1 Reply)
Discussion started by: halo98
1 Replies

2. Shell Programming and Scripting

script execute or no execute

o hola.. Tengo un script que se ejecuta bajo una tarea del CronJOb del unix, tengo la version 11 de unix, mi script tiene un ciclo que lee unos archivos .txt luego cada uno de esos archivos debe pasar por un procedimiento almacenado el cual lo tengo almacenado en mi base de datos oracle 10g,... (4 Replies)
Discussion started by: Kespinoza97
4 Replies

3. Shell Programming and Scripting

Outputting formatted Result log file from old 30000 lines result log<help required>

Well I have a 3000 lines result log file that contains all the machine data when it does the testing... It has 3 different section that i am intrsted in 1) starting with "20071126 11:11:11 Machine Header 1" 1000 lines... "End machine header 1" 2) starting with "20071126 12:12:12 Machine... (5 Replies)
Discussion started by: vikas.iet
5 Replies

4. UNIX for Dummies Questions & Answers

display the result of wc -l with words before and after the result

hello showrev -p | wc -l returns: 381 What to do in case I want to have this output: number of lines returned by showrev -p is: 381 thx (3 Replies)
Discussion started by: melanie_pfefer
3 Replies

5. Shell Programming and Scripting

Use grep result to execute next command

Hi I am trying to run 2 servers using a script one after the other. I start the first one: run.sh -c servername >> jboss_log.txt & Then I have to wait until I see Started message in the log file before I launch the other server. I can't use sleep because I am not sure how long it'll... (5 Replies)
Discussion started by: iririr
5 Replies

6. UNIX for Dummies Questions & Answers

what is the result of this?

ls -A $variable (2 Replies)
Discussion started by: prathimahsc
2 Replies

7. Shell Programming and Scripting

Different cmd to execute and based on some pattern parse it and then store result in xlx format

Hi I have a different requirement, I need to run some application on my device from a file app_name.txt one by one which is like this: /usr/apps/email /usr/apps/message /usr/apps/settings after each app while it is running I need to execute again one cmd like ps -ef |grep... (2 Replies)
Discussion started by: Sanjeev Roy
2 Replies

8. Shell Programming and Scripting

How to compare the current result with previous line result.?

Hi Gurus, I have requirement to compare current result with previous reuslt. The sample case is below. 1 job1 1 1 job2 2 1 job3 3 2 job_a1 1 2 job_a2 2 2 job_a3 3 3 job_b1 1 3 job_b2 2 for above sample file, GID is group ID, for input line, the job run... (1 Reply)
Discussion started by: ken6503
1 Replies

9. Shell Programming and Scripting

Execute command and show result in web page

Hi everyone, I have two question 1- I want to execute command in shell and after execution result show in a web server. (kind of making UI ) e.g. in shell root ~: show list item1 item2 item(n)in web server in a page draw a table and show those items in itno | name... (1 Reply)
Discussion started by: indeed_1
1 Replies

10. UNIX for Beginners Questions & Answers

Search a multi-line shell command output and execute logic based on result

The following is a multi-line shell command example: $cargo build Compiling prawn v0.1.0 (/Users/ag/rust/prawn) error: failed to resolve: could not find `setup_panix` in `human_panic` --> src/main.rs:14:22 | 14 | human_panic::setup_panix!(); | ... (2 Replies)
Discussion started by: yogi
2 Replies
PAM_CONV(3)						   BSD Library Functions Manual 					       PAM_CONV(3)

NAME
pam_conv -- PAM conversation system LIBRARY
Pluggable Authentication Module Library (libpam, -lpam) SYNOPSIS
#include <security/pam_appl.h> struct pam_message { int msg_style; char *msg; }; struct pam_response { char *resp; int resp_retcode; }; struct pam_conv { int (*conv)(int, const struct pam_message **, struct pam_response **, void *); void *appdata_ptr; }; DESCRIPTION
The PAM library uses an application-defined callback to communicate with the user. This callback is specified by the struct pam_conv passed to pam_start() at the start of the transaction. It is also possible to set or change the conversation function at any point during a PAM transaction by changing the value of the PAM_CONV item. The conversation function's first argument specifies the number of messages (up to PAM_NUM_MSG) to process. The second argument is a pointer to an array of pointers to pam_message structures containing the actual messages. Each message can have one of four types, specified by the msg_style member of struct pam_message: PAM_PROMPT_ECHO_OFF Display a prompt and accept the user's response without echoing it to the terminal. This is commonly used for passwords. PAM_PROMPT_ECHO_ON Display a prompt and accept the user's response, echoing it to the terminal. This is commonly used for login names and one-time passphrases. PAM_ERROR_MSG Display an error message. PAM_TEXT_INFO Display an informational message. In each case, the prompt or message to display is pointed to by the msg member of struct pam_message. It can be up to PAM_MAX_MSG_SIZE char- acters long, including the terminating NUL. On success, the conversation function should allocate and fill a contiguous array of struct pam_response, one for each message that was passed in. A pointer to the user's response to each message (or NULL in the case of informational or error messages) should be stored in the resp member of the corresponding struct pam_response. Each response can be up to PAM_MAX_RESP_SIZE characters long, including the terminat- ing NUL. The resp_retcode member of struct pam_response is unused and should be set to zero. The conversation function should store a pointer to this array in the location pointed to by its third argument. It is the caller's respon- sibility to release both this array and the responses themselves, using free(3). It is the conversation function's responsibility to ensure that it is legal to do so. The appdata_ptr member of struct pam_conv is passed unmodified to the conversation function as its fourth and final argument. On failure, the conversation function should release any resources it has allocated, and return one of the predefined PAM error codes. RETURN VALUES
The conversation function should return one of the following values: [PAM_BUF_ERR] Memory buffer error. [PAM_CONV_ERR] Conversation failure. [PAM_SUCCESS] Success. [PAM_SYSTEM_ERR] System error. SEE ALSO
openpam_nullconv(3), openpam_ttyconv(3), pam(3), pam_error(3), pam_get_item(3), pam_info(3), pam_prompt(3), pam_set_item(3), pam_start(3) STANDARDS
X/Open Single Sign-On Service (XSSO) - Pluggable Authentication Modules, June 1997. AUTHORS
The OpenPAM library and this manual page were developed for the FreeBSD Project by ThinkSec AS and Network Associates Laboratories, the Secu- rity Research Division of Network Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 (``CBOSS''), as part of the DARPA CHATS research program. BSD
June 16, 2005 BSD
All times are GMT -4. The time now is 10:59 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy