Sponsored Content
Top Forums Shell Programming and Scripting comment out a cron job as part of a script Post 302294526 by 22blaze on Thursday 5th of March 2009 11:07:18 AM
Old 03-05-2009
Understood on the code posting. I will keep this in mind for future posts.
This works great. Thanks for the quick response, much appreciated.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Cron job for Perl script

Although there are many threads on this forum regarding cron, none have specifically answered my question. So hopefully someone can shed some light on what I'm doing wrong.. I have a perl script that I want to run in a cron job. Since I've read that cron doesn't have any environments set, I... (3 Replies)
Discussion started by: man
3 Replies

2. UNIX for Dummies Questions & Answers

a cron job needs a perl script to execute

Hello evreyone, this is my first post, and to say i'm new to this is an understatement. I know very little about perl scripts and hope some one can help me. i'm looking to get a script that a cron job can execute. what the script needs to to is 1) connect to a mysql database 2) go to a... (2 Replies)
Discussion started by: Exader
2 Replies

3. UNIX for Advanced & Expert Users

Need help with a script run by a cron job.

Hi, new to this forum and not sure if this is the right place to post. I'm new to cron jobs and scripts, and I need some help with a script to be used with a cron job. I already have a bot set up at a certain website address and need a script that the cron job will load every day that tells it to... (1 Reply)
Discussion started by: klawless
1 Replies

4. Shell Programming and Scripting

Cron job shell script..

Hey Guys, i was trying out a shell script which has to remove a file for every 90 mins. this is the code i came up with . $ crontab -e file1 file1 contains 30 1 * * * * rm -r /folder1/folder2/somefile.txt Now i need the cron to run for every 90 mins. the problem with this is... (8 Replies)
Discussion started by: Irishboy24
8 Replies

5. Shell Programming and Scripting

Cron job to prevent simultaneous script

I'm using a shared server on Hostgator (Linux CentOS). I'm trying to set a cron job using the Control Panel that will check if its already running before starting a new one. I've tried the following... * * * * * && but I get this error emailed to me... /bin/sh: line 0: Any... (5 Replies)
Discussion started by: tech9821
5 Replies

6. UNIX for Dummies Questions & Answers

cron job for the created shell script

Hi am newbie for unix shell.. how to create a cron job for my already created shell script.:confused: Thanks! (1 Reply)
Discussion started by: vidhyaS
1 Replies

7. Solaris

cron job for phython script

Hello, How do I schedule a cron job for a phython script to run every hour? Also, in case in future I decide to edit/cancel the job how should i do it? Does it matter where my phython script is located? Also, I have am using mailx utility in my script to send me an email and dont want... (7 Replies)
Discussion started by: siddhans
7 Replies

8. Shell Programming and Scripting

how do I run bash script using cron job

How do I run bash script using a cron job? I have tried to just write the path of the script, but that didn't work. (1 Reply)
Discussion started by: locoroco
1 Replies

9. UNIX for Dummies Questions & Answers

Submitting cron job through script

I would like to run a script, as root, which will eventually set up cron job for a non privilege user. Please advice. (9 Replies)
Discussion started by: atanubanerji
9 Replies

10. HP-UX

How to end script in a cron job?

I've created a script to copy backup files from an HP-UX 11iv3 system to an NFS share on another machine. I want to schedule the script to run via cron. The script is simply three lines of cp /backups/Backup /shared/Backup. I've saved the script as a .sh file and call it with KSH. Do I need to... (3 Replies)
Discussion started by: jduehmig
3 Replies
evmpost(1)						      General Commands Manual							evmpost(1)

NAME
evmpost - post events to the EVM daemon SYNOPSIS
msg priority]] | [filename| DESCRIPTION
The command takes a file or stream of text event sources as input and converts them to binary EVM events. By default, the command then posts them to the EVM daemon for distribution. If the option is specified, writes the EVM events to its stream instead of posting them to the daemon. By default, attempts to retrieve event template information from the EVM daemon and merges the template items and environmental items such as and into the output events. If the option is used, the output events contain only the items specified in the source. An event source may contain any number of events. Each event is specified in the manner shown. See the EvmEvent(5) manpage for a more detailed explanation. The command recognizes the following data items in an event source: o o o o o o o o o o All EVM variable types may be specified except for Refer to EvmEvent(5) for details on data items and variables. In the event source, each keyword must be accompanied by a corresponding value. The value must be enclosed in double quotes ("") if it contains white space. The data item keywords that are specified outside the event body are taken as global values. The data item keywords are included in each of the following events which do not have an explicit value defined for that keyword. Comments are indicated by a leading character. Blank lines are ignored. The command builds an EVM event containing the items that are explicitly specified in the source. If the event is posted or if the option is specified without additional environmental items such as the and template items are inserted into the event automatically. The rules for posting an event are more stringent than those for an event simply to exist. Therefore, may display an error when trying to post an an event that cannot be posted, even though the same source is accepted when using the option. For example, do not post an event if it does not contain a name with at least three components because the daemon rejects it. However, such an event can exist, and can create it and pass it to The following example fails because it does not contain a name: The following example is successful, even though it does not display any useful information: The option can verify event source and template files by piping the output into See evmshow(1). Options Does not post the events, but instead passes them directly to as raw EVM events. An error occurs if is directed to a terminal device. When used with the option, causes event template items and environmental values to be merged with the items included in the source. This is the default mode. When used with the option, inhibits the merging of template items and environmental values. Posts an administrator's quick message event with the name and the string msg in a variable data item. If a message contains spaces, the message must be enclosed in quotation marks (""). The event is used to add a message entry in the event log. This option may be used only by privileged users. Posts a user's quick message event with the name and the string msg in a variable data item. If a message contains spaces, the message must be enclosed in quotation marks (""). The event is used to add a message entry in the event log. Assigns priority as the for an administrator's or user's quick message. The priority value must be an integer in the range 0-700. If the priority is not specified, the default of 200 is used. Operands filename Read event sources from filename. If filename is omitted, or is specified as event sources are read from RETURN VALUES
The following exit values are returned: Successful completion. An error occurred. EXAMPLES
o The following example posts an event, provided that a template file containing an event with a matching name has been registered with the EVM daemon. o The following example interprets an event template file, and displays a dump of the contents of each event. Environmental items, such as a timestamp, are not merged into the event. This command checks the syntax and contents of the file. o The following example shows how is used in a shell script to signal completion of some operation: o The following example must be run as to post an administrator's message event. o The following example posts a quick user's message. o This example posts an event that includes a variable. If the template for this event contains the following format data item: then displays this event as: WARNINGS
The command rejects attempts to output raw events to a terminal device. Post only events for which you have posting authorization, and for which a template exists. FILES
Definition of the sockets and protocols used for Internet services Location of the EVM authorization file SEE ALSO
Commands evmget(1), evminfo(1), evmshow(1), evmsort(1), evmwatch(1). Routines EvmEventPost(3). Files evmdaemon.conf(4), evmtemplate(4), services(4). Event Management EVM(5). EVM Events EvmEvent(5). evmpost(1)
All times are GMT -4. The time now is 08:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy