Help for this page

Select Code to Download


  1. or download this
    $_vim_cmd = '/usr/local/bin/vim';
    `$_vim_cmd  . ' -c "normal \r" -c wq ~/vimwiki/testing.md'`;
    
  2. or download this
    $_vim_cmd = '/usr/local/bin/vim';
    my $value = ' -c "normal \r" -c wq ~/vimwiki/testing.md';
    `$_vim_cmd  $value`;
    
  3. or download this
        my $c1 = ' -c "normal ';
        my $c3 = '" -c wq ~/vimwiki/testing.md';
        `$_vim_cmd $c1\r$c3`;