Help for this page

Select Code to Download


  1. or download this
        my $editor = $ENV{'editor'};
        system('vim', $my_file);
    
  2. or download this
        my $editor = $ENV{'EDITOR'} || 'vim';
        system($editor, $my_file);