Sponsored Content
Full Discussion: Can cron do this?
Top Forums UNIX for Advanced & Expert Users Can cron do this? Post 41702 by Neo on Sunday 12th of October 2003 05:58:02 PM
Old 10-12-2003
Incredible Perderabo!

Simply incredible and very helpful to others.

Warmest Regards, Neo
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Cron : you are not authorized to use cron. Sorry.

Hi..... I have a problem with cron . I have stopped and restarted cron daemon and when i type crontab -e i receive the message: crontab: you are not authorized to use cron. Sorry. I am a root user id = ( uid=0(root) gid=1(other) ) into the etc/cond.d/cron.allow i have type root user and into... (1 Reply)
Discussion started by: tt155
1 Replies

2. AIX

AIX and cron logs filtering ?: /etc/cronlog.conf, /var/adm/cron/log

Hi, I can use 'crontabs –e' and do all the scheduling I like. However I would like to auto send myself just the cronjobs logs that fail. That is to say the PIDs that fail and the related lines with those PID’s only. (Not the full set of logs) Has anyone done this work? Or does an AIX 5.3 tool... (0 Replies)
Discussion started by: Keith Johnson
0 Replies

3. UNIX for Dummies Questions & Answers

CRON usage for CRON job

can anybody explain the usage of CRON for adding a cron job. please provide an example also for better understanding !!! Thanks (1 Reply)
Discussion started by: skyineyes
1 Replies

4. Solaris

cron job starts new cron proccess

I run cron in solaris 10 zone. One cron job which syncing files to nfs mounted on container, creates after finishing another cron proccess(/usr/sbin/cron), and after 100 existing cron proccesses next cron job will not start. It's too weird for me, I'm not able to solve this problem. Theoretically... (3 Replies)
Discussion started by: ron76
3 Replies

5. Solaris

User entry in both cron.allow and cron.deny

Hello All, Anybody please help me to know ,what happens when a user having entry in both cron.allow and cron.deny files.Wheather the user will be able to access the crontab??? Thanks in advance Vaisakh (5 Replies)
Discussion started by: ksvaisakh
5 Replies

6. UNIX for Dummies Questions & Answers

How are cron.allow and cron.deny read?

Hi, all! I was working on my Debian, minding my own business but then I wanted to see what happened if the same user was included on both cron.allow and cron.deny :p I would have bet that cron.deny was going to override cron.allow for security reasons, but my computer proved me wrong:... (3 Replies)
Discussion started by: pereyrax
3 Replies

7. Solaris

Cron job running even after cron is removed

Hi , I have removed a cron for particular user , but cron job seems to be running even after the cron entry is removed. The purpose of the cron was to sendmail to user ( it uses mailx utility ) I have restarted cron and sendmail service still user is getting mail alerts from the cron job. And... (4 Replies)
Discussion started by: chidori
4 Replies

8. Shell Programming and Scripting

Commented cron job -- cron monitoring

Hi I have a requirement to write a shell script,that will check the all commented job in cron job.Please help !! (2 Replies)
Discussion started by: netdbaind
2 Replies

9. Shell Programming and Scripting

Cron job - Need to run Cron every quarter at particular time

Hi, 1) If some job supposed to run on 1st of every month at 7 AM In cron job when we have a blackout on the 1st ( i.e when 1st falls on a sunday ) how can we make the job run the next business day? 2) How can we run a job on 25th of every quarter 7 AM(jan,apr,jul,oct) And if 25th... (5 Replies)
Discussion started by: System Admin 77
5 Replies

10. UNIX for Dummies Questions & Answers

Execution problem with Cron: Script works manually but not w/Cron. Why?

Hello gurus, I am making what I think is a simple db2 call from within a shell script but I am having difficulty producing the desired report when I run the script shown below from a shell script in cron. For example, my script and the crontab file setup is shown below: #!/bin/ksh db2... (3 Replies)
Discussion started by: okonita
3 Replies
std::insert_iterator< _Container >(3cxx)								  std::insert_iterator< _Container >(3cxx)

NAME
std::insert_iterator< _Container > - SYNOPSIS
Inherits std::iterator< output_iterator_tag, void, void, void, void >. Public Types typedef _Container container_type typedef void difference_type typedef output_iterator_tag iterator_category typedef void pointer typedef void reference typedef void value_type Public Member Functions insert_iterator (_Container &__x, typename _Container::iterator __i) insert_iterator & operator* () insert_iterator & operator++ () insert_iterator & operator++ (int) insert_iterator & operator= (const typename _Container::value_type &__value) insert_iterator & operator= (typename _Container::value_type &&__value) Protected Attributes _Container * container _Container::iterator iter Detailed Description template<typename _Container>class std::insert_iterator< _Container > Turns assignment into insertion. These are output iterators, constructed from a container-of-T. Assigning a T to the iterator inserts it in the container at the iterator's position, rather than overwriting the value at that position. (Sequences will actually insert a copy of the value before the iterator's position.) Tip: Using the inserter function to create these iterators can save typing. Definition at line 581 of file stl_iterator.h. Member Typedef Documentation template<typename _Container> typedef _Container std::insert_iterator< _Container >::container_type A nested typedef for the type of whatever container you used. Definition at line 590 of file stl_iterator.h. typedef void std::iterator< output_iterator_tag , void , void , void , void >::difference_type [inherited] Distance between iterators is represented as this type. Definition at line 126 of file stl_iterator_base_types.h. typedef output_iterator_tag std::iterator< output_iterator_tag , void , void , void , void >::iterator_category [inherited] One of the tag types. Definition at line 122 of file stl_iterator_base_types.h. typedef void std::iterator< output_iterator_tag , void , void , void , void >::pointer [inherited] This type represents a pointer-to-value_type. Definition at line 128 of file stl_iterator_base_types.h. typedef void std::iterator< output_iterator_tag , void , void , void , void >::reference [inherited] This type represents a reference-to-value_type. Definition at line 130 of file stl_iterator_base_types.h. typedef void std::iterator< output_iterator_tag , void , void , void , void >::value_type [inherited] The type 'pointed to' by the iterator. Definition at line 124 of file stl_iterator_base_types.h. Constructor &; Destructor Documentation template<typename _Container> std::insert_iterator< _Container >::insert_iterator (_Container &__x, typename _Container::iterator__i) [inline] The only way to create this iterator is with a container and an initial position (a normal iterator into the container). Definition at line 596 of file stl_iterator.h. Member Function Documentation template<typename _Container> insert_iterator& std::insert_iterator< _Container >::operator* () [inline] Simply returns *this. Definition at line 650 of file stl_iterator.h. template<typename _Container> insert_iterator& std::insert_iterator< _Container >::operator++ () [inline] Simply returns *this. (This iterator does not move.) Definition at line 655 of file stl_iterator.h. template<typename _Container> insert_iterator& std::insert_iterator< _Container >::operator++ (int) [inline] Simply returns *this. (This iterator does not move.) Definition at line 660 of file stl_iterator.h. template<typename _Container> insert_iterator& std::insert_iterator< _Container >::operator= (const typename _Container::value_type &__value) [inline] Parameters: value An instance of whatever type container_type::const_reference is; presumably a reference-to-const T for container<T>. Returns: This iterator, for chained operations. This kind of iterator maintains its own position in the container. Assigning a value to the iterator will insert the value into the container at the place before the iterator. The position is maintained such that subsequent assignments will insert values immediately after one another. For example, // vector v contains A and Z insert_iterator i (v, ++v.begin()); i = 1; i = 2; i = 3; // vector v contains A, 1, 2, 3, and Z Definition at line 632 of file stl_iterator.h. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::insert_iterator< _Container >(3cxx)
All times are GMT -4. The time now is 09:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy