Sponsored Content
Full Discussion: pdadmin script help needed
Top Forums Shell Programming and Scripting pdadmin script help needed Post 302306034 by quirkasaurus on Friday 10th of April 2009 03:14:45 PM
Old 04-10-2009
ksh code:

Code:
pdadmin -a sec_master -p <passwd> group show-members <groupname> |
while read user ; do

  groups=$( pdadmin -a sec_master -p <passwd> user show-groups $user )

  pdadmin -a sec_master -p <passwd> user show $user |
    awk '/LDAP CN:/{ print $3; }' |
    read first

  pdadmin -a sec_master -p <passwd> user show $user |
    awk '/LDAP SN:/{ print $3; }' |
    read last

  echo $user $groups $first $last

done |
  tee this_script.log

 

10 More Discussions You Might Find Interesting

1. Solaris

Script Needed

Hi Everyone , have a nice day i am in certain directory and all files in that directory are of this format SDPCDR_sdp05a_0189_20070320-174315.ASN~ now i want to calculate number of files based on this criteron SDPCDR_sdp05*_*_20070301-*.ASN~ which intends to count files of sdp05 for... (1 Reply)
Discussion started by: Dastard
1 Replies

2. Shell Programming and Scripting

Script needed

Hi I am looking for the script which can move 1month old data from a TXT file.actully in this file data is appended on daily basis.pleasehalp me out. Thanks in advance (3 Replies)
Discussion started by: vpandey
3 Replies

3. Shell Programming and Scripting

pdadmin script

Hello all, I would need a scirpt to perform the following operation: I would like to give a spreadsheet as input with 3 columns with firstname,lastname,userid in order The script should read from the spreadsheet and search if each user exists in particular groups "Group1" by using the... (2 Replies)
Discussion started by: sophos
2 Replies

4. Shell Programming and Scripting

Help Needed in Sh script

hi, Im trying to select from a sql using shell script and once i get count i need to add the count to the subject line and send mail to every1.. ex : Select count(*) from emp; In Shell script echo $PASSWORD|$ORACLE_HOME/bin/sqlplus $USERID@$DBNAME @$SCRIPT_DIR/emp_count.sql... (1 Reply)
Discussion started by: jkumsi
1 Replies

5. Shell Programming and Scripting

Script needed...

Hi! I have a file which has the following entry - which has different service names with their corresponding URLs. I want to echo the servicenames and curl each URL and find out if the URL is accessible or not. (2 Replies)
Discussion started by: jacki
2 Replies

6. Shell Programming and Scripting

Expect script help needed- script failing if router unavailable

Hey all. Sometimes I'm tasked to change some router configs for the entire network (over 3,000 Cisco routers). Most of the time its a global config parameter so its done with a loop and an IP list as its the same configuration change for all routers. This is working OK. However, sometimes an... (3 Replies)
Discussion started by: mrkz1974
3 Replies

7. Shell Programming and Scripting

Script needed

Here is a file that I want to run a script to do the following File Content: 0883318739,13010,A,300,abcde 0880123456,5433,C,200,xcvfe 0882344242,4233,N,204,ghfsa Script to be get: Try to have a script that can match all the below criteria 1st field range from 08801xxxxx to 0882xxxxxx... (6 Replies)
Discussion started by: ahmed_as8
6 Replies

8. Shell Programming and Scripting

Help Needed on Script

Hi team, I am looking to execute some command through xargs. $cat testfile | grep myloc alias myloc='cd /export/nfs-1sv-23/' I am trying to execute that alias as soon as i cat and grep ? I tried with $cat testfile | grep myloc | xargs --> no luck ... Can some one assist me with... (6 Replies)
Discussion started by: itsme488
6 Replies

9. Homework & Coursework Questions

Help needed for a script

TAG flow Between SDR and DELTA SDR is the Source table. Delta is the target table having one staging table and one Main table. Tags flows between SDR and Delta through ER gateway. From SDR (SDR.CUSTOMER_PRODUCT and SDR.CUSTOMER_PRODUCT_RELATIONSHIP) the Tags flows to ER... (2 Replies)
Discussion started by: patitapaban
2 Replies

10. Homework & Coursework Questions

Help needed - Script

Hi guys, Hoping someone can help me with the below. - Write a script called 'home.sh' which takes a username as its argument and will print out the home directory of that user as follows: $ ./home.sh root root's home directory is /root $ ./home.sh nobody nobody's home directory is /... (9 Replies)
Discussion started by: edujs7
9 Replies
script(1)							   User Commands							 script(1)

NAME
script - make record of a terminal session SYNOPSIS
script [-a] [filename] DESCRIPTION
The script utility makes a record of everything printed on your screen. The record is written to filename. If no file name is given, the record is saved in the file typescript. See WARNINGS. The script command forks and creates a sub-shell, according to the value of $SHELL, and records the text from this session. The script ends when the forked shell exits or when Control-d is typed. OPTIONS
The following option is supported: -a Appends the session record to filename, rather than overwriting it. NOTES
script places everything that appears on the screen in filename, including prompts. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |CSI |Enabled | +-----------------------------+-----------------------------+ SEE ALSO
attributes(5) WARNINGS
script can pose a security risk when used in directories that are writable by other users (for example, /tmp), especially when run by a privileged user, that is, root. Be sure that typescript is not a link before running script. SunOS 5.11 30 Jan 2004 script(1)
All times are GMT -4. The time now is 12:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy