![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sketsa SVG Editor 5.2 (Default branch) | iBot | Software Releases - RSS News | 0 | 05-27-2008 09:30 AM |
| Sketsa SVG Editor 5.1.1 (Default branch) | iBot | Software Releases - RSS News | 0 | 02-04-2008 12:10 PM |
| Menu Editor 1.3.4 (Default branch) | iBot | Software Releases - RSS News | 0 | 02-04-2008 12:00 AM |
| Avalon SQL Editor 4.0 (Default branch) | iBot | Software Releases - RSS News | 0 | 01-30-2008 11:10 PM |
| Changing default editor | Tony Empire | UNIX for Dummies Questions & Answers | 1 | 12-26-2004 11:04 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
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 |
|
||||
|
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 |
|
||||
|
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 |