Lines Matching refs:shell
2 " Language: shell (sh) Korn shell (ksh) bash (sh)
16 " If the shell script itself specifies which shell to use, use it
24 " user did not specify which shell to use, and
25 " the script itself does not specify which shell to use. FYI: /bin/sh is ambiguous.
27 let s:shell = ""
29 let s:shell = resolve("/bin/sh")
31 let s:shell = resolve("/usr/bin/sh")
33 if s:shell =~ '\<ksh\>'
35 elseif s:shell =~ '\<bash\>'
37 elseif s:shell =~ '\<dash\>'
40 unlet s:shell
114 " Set up folding commands for shell {{{1
326 " $(..) is not supported by sh (Bourne shell). However, apparently
327 " some systems (HP?) have as their /bin/sh a (link to) Korn shell
328 " (ie. Posix compliant shell). /bin/ksh should work for those
773 " Delete shell folding commands {{{1