Sponsored Content
Full Discussion: scheduler Script
Top Forums Shell Programming and Scripting scheduler Script Post 302511103 by rdcwayx on Tuesday 5th of April 2011 09:27:16 PM
Old 04-05-2011
set a group mailbox and add 200 ids in it.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Scheduler in Solaris

I am using Sun Solaris Where I can find scheduler program that can run another program automatically on scheduled time? Thank you. (1 Reply)
Discussion started by: wadiachmed
1 Replies

2. Shell Programming and Scripting

event scheduler/tracker script

Dear All, I am writing an event tracker shell script as part of a personal project. I am trying 2 write a sort of date math function using the GNU date command. This function would allow 2 search 4 future events, like looking 4 events 1 or 2 days ahead 4 instance. I've used the date command b4... (1 Reply)
Discussion started by: theangrybeaver
1 Replies

3. UNIX for Advanced & Expert Users

command to schedule a unix script in tidal' scheduler

hi i am needed to use tidal's scheduler to schedule unix scripts available on server A. while creating a job to be scheduled, it has an option called command which will take a path of the file. i have seen several examples in the following way e:\tidal\bin\sleep.exe here i did not understand two... (0 Replies)
Discussion started by: balireddy_77
0 Replies

4. Shell Programming and Scripting

$HOME Not Getting Set for Oracle Scheduler Script at Runtime

We are researching the possibility of using Oracle 10g Scheduler on Solaris 10 to launch scripts at our site, and the script that I am testing does not get $HOME (and other environment variables) set correctly. Here is the Korn shell script (show_info.ksh): #!/usr/bin/ksh id env | sort Here... (4 Replies)
Discussion started by: shew01
4 Replies

5. UNIX for Dummies Questions & Answers

Script ran by job scheduler fails from the 15th to the 20th of the month

Hi, I have a script that finds the application logs from the previous day and sends it to another server via ftp. The code is something like this: yest_date=`TZ=CST+24 date "+%b %d"` logdir=/app/logs logs=app*.log tmpdir=/tmp cd $logdir for i in `ls -1 $logs` do chkstr=`ls -1l $i | grep... (2 Replies)
Discussion started by: tatchel
2 Replies

6. UNIX for Dummies Questions & Answers

Linux scheduler....

HI could you comment on my small doubts below 1. which type of sheduler is used inb linux?? is it round robin or multi queue priority based round robin ??? 2. Which process has the PID 0 ?? if it is sheduler process then how to convinience myself?? i mean how to see on the system...?? is... (0 Replies)
Discussion started by: raj_b025
0 Replies

7. Shell Programming and Scripting

ksh script not working if triggered by scheduler

I have a script that works well if i execute manually using informix user. However, it does not execute properly if triggered using the scheduler (ESP). This is the partial part where it doesn't work. i added some tracing but i can't figure it out. #!/bin/ksh let db_is_up=0... (6 Replies)
Discussion started by: tungaw2004
6 Replies

8. Post Here to Contact Site Administrators and Moderators

Control - M Scheduler is not able to pick my shell script

Hi, Below is a shell script that i made:- #!/bin/ksh #path=/opt/tibco/shared/adaptadores/SSCC/EVEREST/input/ if ; then echo "ZIP Exists and now Processing" for files in /opt/tibco/shared/adaptadores/SSCC/EVEREST/input/T010B04.* do unzip $files echo "Files Unzipped" echo $files... (1 Reply)
Discussion started by: mmtrexon
1 Replies

9. Shell Programming and Scripting

Control - M Scheduler is not able to pick my shell script

Hi, Below is a shell script that i made:- #!/bin/ksh #path=/opt/tibco/shared/adaptadores/SSCC/EVEREST/input/ if ; then echo "ZIP Exists and now Processing" for files in /opt/tibco/shared/adaptadores/SSCC/EVEREST/input/T010B04.* do unzip $files echo "Files Unzipped" echo $files... (4 Replies)
Discussion started by: mmtrexon
4 Replies

10. Shell Programming and Scripting

Crontab scheduler to execute script every 45 days

Can someone please help me on how to schedule script to run every 45 days in crontab ? Thanks, Prince (5 Replies)
Discussion started by: prince1987
5 Replies
id(1)							      General Commands Manual							     id(1)

NAME
id - Displays the user's system identity SYNOPSIS
id [user] id -G [-n] [user] id -g [-nr] [user] id -u [-nr] [user] id -a STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: id: XCU5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. OPTIONS
Displays all groups ids (real, effective, and supplementary) only, as unsigned decimal numbers. Displays only the effective group id as an unsigned decimal number. Displays user and group names as strings rather than as numbers. Displays only the real ID. Displays only the effective user ID as an unsigned decimal number. [Tru64 UNIX] Displays user and all group IDs and names if the environment variable CMD_ENV is set to the string svr4. OPERANDS
The user for whom information is to be written. If this parameter is omitted, the user and group names associated with the invoking process are used. DESCRIPTION
The id command writes to standard output a message containing the user and group IDs and corresponding names of the invoking process. If effective names and IDs do not match the real ones, the id command writes both. If user is specified and the invoking process has sufficient privileges, the IDs and names in the message are for user rather than for the invoking process. Effective IDs are assumed identical to real IDs. Your real user and group ids are specified in the /etc/passwd file and are your user and group ids on login. You can change your active group with the newgrp shell command (see newgrp(1)) if additional groups are specified for you in the /etc/group file. Such groups are called supplementary . A process can also have an effective user or group id set when a set-user- or set-group-identifier program is executed. See setuid(2), setgid(2). SVID Conformance [Tru64 UNIX] When the environment variable CMD_ENV is set to the string svr4, the command syntax and output is compatible with the SVID standard. In particular, the id command with no options displays the user's name and id and the real and effective group names and ids. The -a option adds any supplementary group names and ids to the display. EXIT STATUS
The following exit values are returned: Successful completion. An error occurred. EXAMPLES
To display your user and group IDs, enter: id Information is displayed similar to: uid=200(thomas) gid=1(staff) In the case where a user belongs to a supplementary group, information is displayed similar to: uid=200(thomas) gid=1(staff) groups=0(system) However, if the environment variable CMD_ENV is set to the string svr4, the command id with no options does not display any supple- mentary groups and results in a display similar to: uid=200(thomas) gid=1(staff) To display supplementary groups with CMD_ENV set to svr4, use the command id -a. The display is then similar to: uid=200(thomas) gid=1(staff) groups=1(users),0(system) ENVIRONMENT VARIABLES
The following environment variables affect the execution of id: [Tru64 UNIX] When this environment variable CMD_ENV is set to the string svr4, the command syntax and output is compatible with the SVID standard. The -a option is only available in this condition. Provides a default value for the internationalization variables that are unset or null. If LANG is unset or null, the corresponding value from the default locale is used. If any of the internationalization variables contain an invalid setting, the utility behaves as if none of the variables had been defined. If set to a non-empty string value, overrides the values of all the other internationalization variables. Determines the locale for the interpretation of sequences of bytes of text data as characters (for example, single-byte as opposed to multibyte characters in arguments). Determines the locale for the format and contents of diagnostic messages written to standard error. Determines the location of message catalogues for the processing of LC_MESSAGES. FILES
Group names declared on the system. Password file. SEE ALSO
Commands: groups(1), logname(1), newgrp(1), who(1) Functions: getgid(2), getuid(2), setgid(2), setuid(2) Files: group(4), passwd(4) Environment: environ(5) Standards: standards(5) id(1)
All times are GMT -4. The time now is 10:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy