Editing Crontab


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Editing Crontab
# 1  
Old 08-11-2006
Editing Crontab

Hi

I am not able to edit crontab.

Following is the comand that is being issued

$crontab -e
2764 ............ This is what I am able to see

But when I do
$crontab -l
List of all the crontab entry is displayed.

Also I am seeing one entry in my /etc/cron.d
prw------- 1 root root 0 Aug 10 12:29 FIFO

What does p stands for...... in permission section

Please suggest

Regards
Pankaj
# 2  
Old 08-11-2006
When you specify the -e option, crontab invokes the editor specified in the environment variable EDITOR. If the variable is not set, crontab uses the vi editor.

Check the value of the variable EDITOR.


Jean-Pierre.
# 3  
Old 08-11-2006
Hi
I checked the setting by echo command

$echo $EDITOR
vi

It shows it is vi, still crontab -e is not working .. it give some no like 2764

but when i do like this I am able to change the entry of my cromtab

$crontab < /path/of/the/textfile/which/has/cronentry/mycronentry.txt

Please suggest

Pankaj
# 4  
Old 08-11-2006
Did you remember to

export EDITOR

after setting it to "vi"?

Also (if you're on a Sun box) crontabs will be in /var/spool/cron/crontabs.

Cheers
ZB
# 5  
Old 08-12-2006
Hi

I exported the vi EDITOR also in .profile file, but again its showing some no when I issue $ crontab -e


Do we need to add magic line( #! /bin/sh ) in this file too

Please suggest

Pankaj
# 6  
Old 08-12-2006
Does it work from the command line?

Code:
$ EDITOR=vi
$ export EDITOR
$ crontab -e

Cheers
ZB
# 7  
Old 08-12-2006
Hi !!!

I solve this seeing previous posts........ Anyway thanks a lot

Regards
Pankaj
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Convert vi editing to text editing

Dear Guru's I'm using Putty and want to edit a file. I know we generally use vi editor to do it. As I'm not good in using vi editor, I want to convert the vi into something like text pad. Is there any option in Putty to do the same ? Thanks for your response. Srini (6 Replies)
Discussion started by: thummi9090
6 Replies

2. Solaris

Crontab editing issue

Hi, OS - SunOS I gave crontab -e then it returns zero. $ crontab -e 0 ? ? Crontab status - $ ps -ef | grep cron root 2481 1 0 May 12 ? 0:18 /usr/sbin/cron Please help (9 Replies)
Discussion started by: nag_sathi
9 Replies

3. Shell Programming and Scripting

Need help regarding String editing

Hi Geeks I am working on trimming the logs and extracting the XMLs from it. I am facing one problem here. My XML String is ending with ...........Request></Body></Envelope>S/R sometimes there is more then just S/R in the end. I want to delete anything comes after </Envelope>... (3 Replies)
Discussion started by: santy00110011
3 Replies

4. Shell Programming and Scripting

Need help in editing a file

I have a file which has 10 million records in it. When am trying to edit the file with vi, the following error occurs: ~ ~ ~ ~ ~ ~ ~ ~ "file1" Value too large for defined data type Is there any way that I can edit this file without using vi? Any help would be really appreciated.... (8 Replies)
Discussion started by: bobby1015
8 Replies

5. Shell Programming and Scripting

Editing crontab via ksh

Hi all, I am trying the following I am hoping that the crontab would be changed. but it prints the previous crontab and says Can anyone tell me the correct ksh command that should be used here? I don't want to edit the crontab with crontab -e, I need to edit it via ksh. Thank... (2 Replies)
Discussion started by: ajaba
2 Replies

6. UNIX for Dummies Questions & Answers

Editing crontab of non-root user from file

Hi All, Ref: "build crontab from a text file" in same forum. (I am not allowed to post URL's in the first post) We are reorganizing our UNIX Crontab file by first making changes in a word pad text file. The intent is to then copy it back to Crontab. Will this work? Copy and Paste does not... (6 Replies)
Discussion started by: nivedhitha
6 Replies

7. Fedora

editing crontab help

I'm using fedora 5 and sql 5.0. I'm trying to edit the crontab to perform automatic backups of my database. For some reason it isn't working. Here is what I have so far. 15 2 * * * /usr/bin/mysqldump -opt -all-databases u root -ppassword -h localhost... (10 Replies)
Discussion started by: randerson21
10 Replies

8. UNIX for Dummies Questions & Answers

Editing a cron file with crontab

I want to set up a file with crontab to run the cron deamon so I can use at to schedule jobs. I think the crontab file (or whatever you call it) has to be set up. Currently, I don't have a crontab file (I checked by typing sudo crontab -u myusername -l), and I don't know the syntax for creating... (6 Replies)
Discussion started by: Ultrix
6 Replies

9. Solaris

editing crontab with vim and using .vimrc

Hi since we migrated from Solaris 8 to Solaris 10 I do miss a nice feature when editing crontab with vim editor: no more color highlighting after starting to edit. Well there is a hack, see below. I did define: export EDITOR='vim -c ":source /export/home/duc904/.vimrc"' Under Sol8 when... (2 Replies)
Discussion started by: duc904
2 Replies

10. Shell Programming and Scripting

need help in file editing:-

I have 2 files:- file1 and file2 file1 SEED RPTT TST8 file2 SEED:db1:Y RPTT:db2:Y SED8:db2:N TST8:db:Y TRN8:db:N CNV8:db:Y TEST:db:Y I have to change third field of file2 to "y" for every entry in file1 matches first filed of file 2 and rest to N (2 Replies)
Discussion started by: okreporthai
2 Replies
Login or Register to Ask a Question