![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sketsa SVG Editor 5.2 (Default branch) | iBot | Software Releases - RSS News | 0 | 05-27-2008 06:30 AM |
| Sketsa SVG Editor 5.1.1 (Default branch) | iBot | Software Releases - RSS News | 0 | 02-04-2008 09:10 AM |
| Menu Editor 1.3.4 (Default branch) | iBot | Software Releases - RSS News | 0 | 02-03-2008 09:00 PM |
| Avalon SQL Editor 4.0 (Default branch) | iBot | Software Releases - RSS News | 0 | 01-30-2008 08:10 PM |
| Changing default editor | Tony Empire | UNIX for Dummies Questions & Answers | 1 | 12-26-2004 08:04 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
set EDITOR=vi -> default editor not setting for cron tab
Hi All,
I am running a script , working very fine on cmd prompt. The problem is that when I open do crontab -e even after setting editor to vi by set EDITOR=vi it does not open a vi editor , rather it do as below..... ///////////////////////////////////////////////////// $ set EDITOR=vi $ echo $EDITOR $ crontab -e 79 29 16 * * * /bin/sh /app/siebel/testdir/automate.sh ? The crontab file was not changed. $ /////////////////////////////////////////////////////////// Even if i do , $vi crontab it opens a vi editor for me with name crontab , where I can write the above line 29 16 * * * /bin/sh /app/siebel/testdir/automate.sh and save . But it is not showing me the crontab job when I do $crontab -l Can some bdy help me for this .. PS : I have also tried $setenv EDITOR vi but in vain, still getting no results. Really need your help for this..... Thanks & Regards, Aru |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
oops.............. even
$set EDITOR=vi $export EDITOR OR $export EDITOR=vi is also not working..... I feel sad. :-( Help Plz...... Aru |
|
#3
|
|||
|
|||
|
Hi friends ,
I got the solution to my problem. i feel to discuss it in the form, so that others will be benifitted ... At cmd prompt I just have to write two lines EDITOR=vi; export EDITOR Now, crontab -e will open a vi editor for me. :-) Chow. Aru |
|
#4
|
|||
|
|||
|
I had the same problem, check and see if the VISUAL env. variable is set to something other than vi.
Code:
set | grep VISUAL Many ways to fix... Add to your ~/.bash_profile (or /etc/profile, or /etc/profile.d/SOME_FILE) Code:
export VISUAL=vi |
|
#5
|
|||
|
|||
|
Quote:
|
|
#6
|
|||
|
|||
|
vi <=> vim :-??
|
|
#7
|
||||
|
||||
|
please fo follwing change in .profile and save change:
============================= EDITOR=vi export EDITOR ======================= |
||||
| Google The UNIX and Linux Forums |